John, Thanks for the reply. Yes, the padding is set and it does show the default silver-colored tab that I've set up, it just does not override that tag with the colored versions for those defined in the CSS. To clarify a bit further, here is the "default" code as well. They are in this order in the CSS as well, so I would assume it would override earlier properties with the later ones (at least that's the way it's working for the "a" tag right-side images): #navParent a {
font-weight:normal;
float:left;
display:block;
text-align:center;
white-space: nowrap;
text-align: center;
padding:7px 10px 3px 2px;
text-decoration:none;
color:#FFFFFF;
background:url(tabs/tab-right.gif) no-repeat right top;
}
#navParent a:hover,
#navParent li.hover a
{
text-decoration:none;
background-position:100% -150px;
padding: 3px 10px 7px 2px;
}
#navParent li {
background:url(tabs/tab-left.gif) no-repeat left top;
border-bottom: #999999 1px solid;
} /* Home Tab */
#navParent-240 a {
background:url(tabs/tab-silver-right.gif) no-repeat right top;
}
#navParent-240 li {
background:url(tabs/tab-silver-left.gif) no-repeat left top;
}
/* About Us Tab */
#navParent-258 a {
background:url(tabs/tab-red-right.gif) no-repeat right top;
}
#navParent-258 li {
background:url(tabs/tab-red-left.gif) no-repeat left top;
} |