css - IE Cross Browser Button Issue -
http://www.pcdconsultancy.co.uk/
im debugging in ie website, , trying establish causing button float outside wrapper
the code sidebar :
<div class="homepagesidebar"> <ul> <li> <div class="mctitlelatestnews"> <div class="exclamationmark"></div>latest news </div> <div class="latestpostsbox"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('homepage-sidebar') ) :?><?php endif; ?> <?php $the_query = new wp_query( 'showposts=2' ); ?> <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> <i class="sidebarbluetext"><?php the_date('js f y'); ?></i> <?php the_content(__('(more…)')); ?> <br/> <?php endwhile;?> <div class="morewrap"> <a href="http://pcdconsultancy.co.uk/index.php/projects/">more</a> </div> </div> <br/> <div class="projectboxtitle"> <div class="projectsicon"></div>recent projects</div> <div class="projectsbox"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('recentposts-sidebar') ) : endif; ?> <?php $the_query = new wp_query( 'showposts=1' ); ?> <?php while ($the_query -> have_posts()) : $the_query -> the_post(); ?> <?php the_post_thumbnail( array(218,200) ); ?> <?php endwhile;?> <div class="projectsmorewrap"><a href="http://www.milknhny.co.uk/sofiawork/?page_id=12">more</a></div> </div> </li> </ul> </div>
i dont see div being open im @ loss! can please advise?
it looks don't close projectboxtitle div anywhere.
Comments
Post a Comment