CodeMama
08-10-2009, 12:00 PM
can't seem to get my bg images to show up for my menu:
my css:
.bluetabs li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #778;
color: #2d2b2b;
background: url("inc/bluetab.gif") top left repeat-x; /*THEME CHANGE HERE*/
}
.bluetabs li a:visited{
color: #2d2b2b;
}
.bluetabs li a:hover{
text-decoration: underline;
color: #2d2b2b;
}
.bluetabs li.selected {
}
.bluetabs li.selected a { /*selected main tab style */
background-image: url("inc/bluetabactive.gif");
border-bottom-color: white;
}
.bluetabs li.selected a:hover{ /*selected main tab style */
text-decoration: none;
}
and my html menu:
<!---tabbed menu--->
<div id="bluemenu" class="bluetabs">
<ul>
<li class="bluetabs"><a href="browse.php" onclick="return false">Browse Restaurants</a></li>
<li class="bluetabs"><a href="search.php" onclick="return false">Search Inspections</a></li>
<li class="bluetabs"><a href="restaurants.php?show=all" onclick="return false">Recent Inspections</a></li>
<li class="bluetabs"><a href="http://www.news-leader.com/apps/pbcs.dll/section?Category=DATA" onclick="return false">Back to Data-Leader</a></li>
</ul>
</div>
my css:
.bluetabs li a{
text-decoration: none;
padding: 3px 7px;
margin-right: 3px;
border: 1px solid #778;
color: #2d2b2b;
background: url("inc/bluetab.gif") top left repeat-x; /*THEME CHANGE HERE*/
}
.bluetabs li a:visited{
color: #2d2b2b;
}
.bluetabs li a:hover{
text-decoration: underline;
color: #2d2b2b;
}
.bluetabs li.selected {
}
.bluetabs li.selected a { /*selected main tab style */
background-image: url("inc/bluetabactive.gif");
border-bottom-color: white;
}
.bluetabs li.selected a:hover{ /*selected main tab style */
text-decoration: none;
}
and my html menu:
<!---tabbed menu--->
<div id="bluemenu" class="bluetabs">
<ul>
<li class="bluetabs"><a href="browse.php" onclick="return false">Browse Restaurants</a></li>
<li class="bluetabs"><a href="search.php" onclick="return false">Search Inspections</a></li>
<li class="bluetabs"><a href="restaurants.php?show=all" onclick="return false">Recent Inspections</a></li>
<li class="bluetabs"><a href="http://www.news-leader.com/apps/pbcs.dll/section?Category=DATA" onclick="return false">Back to Data-Leader</a></li>
</ul>
</div>