this is my
site. i can't get my image navigational tabs to appear at all on the site. I need for it to appear below the logo and above the red masthead. this is my first time trying to experiment with image based tabs rather than text so I really don't know what I"m doing here. Any help would appreciated.
Code:
<div id="navmenu">
<ul id="navmenu">
<li class="home"><a href="#"></a></li>
<li class="ec"><a href="#"></a></li>
<li class="shipping"><a href="#"></a></li>
<li class="other"><a href="/#"></a></li>
<li class="boxes"><a href="#"></a></li>
<li class="contact"><a href="#"></a></li>
</ul>
</div>
Code:
#navmenu {
float: left;
position: relative;
height: 50px;
z-index: 3;
clear: both;
}
#navmenu ul {
float: left;
list-style-type: none;
display: inline;
position: absolute;
top: 43px;
left: 60px;
}
#navmenu ul li {
float: left;
padding: 0;
margin: 0;
display: inline;
}
#navmenu ul li a {
display: block;
height: 30px;
}
#navmenu ul li a.home {
background: transparent url(test/drop2/images/tabs/static/home.jpg) no-repeat scroll left top;
height: 27px;
}
#navmenu ul li a.ec {
background: transparent url(test/drop2/images/tabs/static/ec.jpg) no-repeat scroll left top;
height: 27px;
width: 66px;
}