Everything is functioning fine in Firefox and Safari, but there is a crazy floating dark gray div with an orange top border in my bottom navigation that I cannot figure out in IE. My left-floated bottom site nav is also missing. My footer nav seems to be functioning fine in all the interior pages, so it seems like it might be a problem with the top (blog and twitter sections) portion of my footer.
HTML:
<div id=\"footer-top\">
<div id=\"blog-footer\">
<h2 id=\"blog-footer-header\">Blog</h2>
<?php if(have_posts()) :?>
<?php $recentBlog = new WP_Query(); $recentBlog->query('showposts=1'); while($recentBlog->have_posts()) : $recentBlog->the_post();?>
http://vtypemedia.com
Everything is functioning fine in Firefox and Safari, but there is a crazy floating dark gray div with an orange top border in my bottom navigation that I cannot figure out in IE. My left-floated bottom site nav is also missing. My footer nav seems to be functioning fine in all the interior pages, so it seems like it might be a problem with the top (blog and twitter sections) portion of my footer.
HTML:
CSS:
I've tried repositioning my float clearing and that hasn't helped.
Thank you so much for any help!!!!
Not sure it will make a difference in ie but I would have floated #twitter left up against #blog-footer and given that a right margin:
#blog-footer {
width: 359px;
height: 118px;
background-color: #e7e7e7;
margin: 20px 0px 20px 60px;
float: left;
position: relative;
}
#twitter {
width: 358px;
height: 118px;
background-color: #e7e7e7;
margin: 20px 60px 0px 0px;
float: right;
position: relative;
}
Thanks so much for the reminder on how important validation is!