I am having some problems trying to add a link to the css image that is after every link, the text itself works but not the image to the right of it, how can I fix it? Thanks.
<nav>
<!-- top menu -->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="materials_list.html">Materials</a></li>
<li><a href="screened_Loam.html">Screened Loam/Topsoil</a></li>
<li><a href="RAP.html">RAP</a></li>
<li><a href="asphalt.html">Asphalt/Concrete Disposals</a></li>
<li><a href="delivery.html">Delivery</a></li>
<li><a href="contact_us.html">Contact</a></li>
</ul>
<!-- /top menu -->
</nav>
.header nav ul li:after {
content:'';
background:url(../images/sprite.png) 6px 7px no-repeat;
float:left;
display:block;
width:12px;
height:12px;
}
:afterto<a>element, not<li>:.header nav ul li a:after { ... }