Try
Code:
#pipe li a {
/*background-image:url(images/navline.gif);*/
background-color:#999;
color:#333333;
padding:0 19px;
margin-right: 0px;
text-decoration: none;
height:52px;
line-height:52px;
float:left;
}
#pipe li a:link {
/*background-image:url(images/navline.gif);*/
background-color:#999;
color:#333333;
margin-right: 0px;
text-decoration: none;
}
#pipe li a:visited {
/*background-image:url(images/navline.gif);*/
background-color:#999;
color:#333333;
margin: 0px;
text-decoration: none;
}
#pipe li a:hover {
color:#ffffff;
background-image:url(images/navline_on.gif);
margin: 0px;
text-decoration: none;
}
#pipe li a:active {
/*background-image:url(images/navline.gif);*/
background-color:#999;
color:#333333;
margin: 0px;
text-decoration: none;
}
PS: The pseudo classes should be in the order link,visited,hover,active (
Lo
Ve-
HAte), otherwise it may cause some unexpected issues in IE.