I tossed together this site (www.greatsavannahevents.com) for a co-worker a while back, and just today realized that the buttons in the upper right were showing up wrong in IE (as opposed to Chrome, Firefox, etc., where they are all of equal height).
The HTML looks like this:
<div id="navcontainer">
<ul id="navlist">
<li><a href="http://www.greatsavannahevents.com/contact.php">Contact Us</a></li>
<li><a href="http://www.greatsavannahevents.com/meet-your-planner.php">Additional Services</a></li>
<li><a href="http://www.greatsavannahevents.com/photos.php">Photos</a></li>
<li><a href="http://www.greatsavannahevents.com/services.php">Services</a></li>
<li><a href="http://www.greatsavannahevents.com">About Us</a></li>
</ul>
</div>
And the CSS looks something like this…
#navcontainer ul {
padding-left: 0;
margin: 0;
width: 560px;
float: right;
font-family: Arial, sans-serif;
font-weight: bold;
text-transform: uppercase;
font-size:12px;
line-height:14px;
}
#navcontainer ul li {
display: inline;
}
#navcontainer ul li a {
width:100px;
height: 80px;
padding-top:60px;
background-color: #b0b0b0;
color: White;
text-decoration: none;
float:right;
border: 1px solid #ffffff;
}
#navcontainer ul li a:hover {
background-color: #000000;
color: #fff;
}
Any help you guys could provide to make it look like the image below (a screenshot of Chrome) in IE would be greatly appreciated.