When I tested my website on Internet Explorer 6, I noticed a problem with the global navigation. Specifically, when I clicked on the ABOUT ME page, the image in the navigation did not match the active page. Although CONTACT US was displayed instead of about me, hovering over it showed the correct image.
Below is an excerpt from the CSS:
.cat-item-5 {
float: left;
display: inline;
width: 162px;
height: 48px;
text-indent: -30000px;
background: -639px 0 url(images/menu.png) no-repeat;
}
.cat-item-5 a {
display: block;
width: 162px;
height: 48px;
background: -639px 0 url(images/menu.png) no-repeat;
}
.cat-item-5 a:hover,
.cat-item-5.current-cat a {
background: -639px 0 url(images/menu_o.png) no-repeat;
}
I would appreciate any assistance you can provide, thank you!