Link

please if you have a look at the link of site point where you have home , products …, after the help link there is still a continous blue block, i would like to add this to my link ,as mine stops there and it is making it look blank below is my css.

ul#nav {
height: 2em;
list-style: none;
margin: 0;
padding-top: .2em;
paddng-bottom: .2em
}

ul#nav li {
background: #bdf url(tabs.gif);
float: left;
margin: 0 1px 0 0;
padding-left: 10px;
}

ul#nav a {
background: url(tabs.gif) 100% 0;
color: #008;
display: block;
float: left;
height: 2em;
line-height: 2em;
padding-right: 10px;
text-decoration: none;
}

ul#nav li.current {
background-color: #48f;
background-position: 0 -60px;
}

ul#nav li.current a {
background-position: 100% -60px;
color: #fff;
font-weight: bold;
}

and the html is
<div id=“navigation”>
<ul id=“nav”>
<li class=“current”><a href=“rindex.html”>Home</a></li>
<li><a href=“women.html”>Women</a></li>
<li><a href=“men.html”>Men</a></li>
<li><a href=“children.html”>Children</a></li>
<li><a href=“furniture.html”>Furniture</a></li>
<li><a href=“vision&sound.html”>Vision&Sounds</a></li>
<li><a href=“cars.html”>Cars</a></li>
<li><a href=“mobile.html”>Mobile</a></li>
<li><a href=“school.html”>School</a></li>
</ul>
</div> <!–end of navigation div –>

You should give your container(navigation) or UL(nav) a width of 100% and use the background color or image you are currently using for your anchors

thanks