I am trying to display the previous and next buttons, but as I compile it it just give me the link saying 'previous' and 'next' instead of the image I want. Below here I am showing first the code in CSS;
div#slideshow ul#nav li#prev a
{
background: url(Resources/Icons/previous.png);
}
div#slideshow ul#nav li#next a
{
background: url(Resources/Icons/next.png);
}
Then here I am showing how I am calling it from asp;
<div id="slideshow">
<ul id="nav">
<li id="prev"><a href="#">Previous</a></li>
<li id="next"><a href="#">Next</a></li>
</ul>
</div>
Any suggestions of what the problem could be?