I'm trying to build a horizontal menu and when I view it in IE6 and IE7 (I haven't checked IE8 or 9), the last item in the list is offset vertically by about 3-5 pixels. I first assumed that it was the element that was wrong, but I'm willing to believe that it's the rest of the list that is displaying incorrectly by not taking the padding on the element. Either way, I've tried everything I can think of, to no avail. I'm sure it's something easy I'm overlooking, but I could use some help/advice on this. Thanks!!
Here's the (dev) site: convocation.weebly.com
And here's the css:
There's also a reset at the top of the css:
And the html (all id's except for "navigation", and inline styles generated by the system):
If it still doesn't work, try this, and add to the head section of the page.
<![if ! lte IE 7]>
<style type=”text/css”>
#pg736980101173487005 a {
float: left;}
</style>
<![endif]>
I ran it through validation, and all the errors I got were from the generated code, nothing I could change/fix.
I applied the conditional style and it worked. That made me realize that I just needed to add the style:
to the main stylesheet and it took care of it all!
(Still don't know why it worked, but it did!)
Appreciate the set of fresh eyes!!