I'm placing images in an unordered list to form my navigation bar. In FF3 it looks fine, but in IE7, theres about a 3 pixel gap under the images (but not on top, as the list sits ply with the previous element). Any idea whats going on? Here's my CSS for the navigation:
ul#navbuttons, navbuttons ul {
display: block;
list-style-type:none;
background-repeat:no-repeat;
margin:0;
padding:0;
cursor:default;
width:120px;
float:left;
margin-left:53px;
margin-bottom:0;
}
#navbuttons li, li#navbuttons {
list-style-type: none;
display: block;
background-repeat:no-repeat;
float:left;
margin-top:0;
width:120px;
margin-bottom:0;
}
#navbuttons a, a#navbuttons{
overflow:hidden;
background-repeat:no-repeat;
margin-top:0;
margin-bottom:0;
}
#navbuttons li a, li a#navbuttons {
margin:0;
margin-top:0;
margin-bottom:0;
}#navbuttons img, img#navbuttons {
margin-top:0;
margin-bottom:0;
}
I really appreciate the help here.
Help















