Home › Forums › CSS › Background not diplaying in IE7 when applied to <li> tag. › Re: Background not diplaying in IE7 when applied to
ul#navigation { list-style-type: none; width: 100%; }
ul#navigation li { float:left; margin: 0 5px 0 0; font-family : “Georgia”, “Times”, serif; font-size: 18px; font-weight: normal; text-align: left; }
ul#navigation li a:link, ul#navigation li a:visited { display: block-inline; color: #2F2626; text-decoration: none; background: url(images/nav-inactive-li-bg.gif); padding: 3px 15px 3px 15px; }
ul#navigation li a:hover { display: block-inline; background: #fff; height: 26px; }
ul#navigation li.current_page_item a { display: block-inline; background: #fff; height: 26px; }
Try the css above. I changed your li to float left. I also changed you #main-navigation to use padding for positioning.