I'm facing an issue with my navigation list that uses images instead of text. It seems like the images have moved to the background, making it difficult for me to fix. I want the images to be clickable and redirect me to another page, but I'm quite new to this. I was attempting to use CSS to resolve this problem.
<div id="navigation">
<ol>
<li class="news"><a href="news.html">news</a></li>
<li class="review"><a href="review.html">Review</a></li>
<li class="contact"><a href="contact.html">Contact</a></li>
<li class="photos"><a href="photos.html">Photos</a></li>
</ol>
</div>
Below is the CSS code:
#navigation li {
float: left;
height: 30px;
margin: 0 0px 0 0;
text-indent: -9999px;}
#navigation li.news {
background: url( "news.png" );
display:block;
width: 308px;
height: 80px;
list-style:none;}
#navigation li.review {
background: url( "review.png" );
width: 308px;
height: 80px;
list-style:none;}
#navigation li.contact
{
background: url( "contact.png" );
width: 308px;
height: 80px;
list-style:none;}
#navigation li.photos
{
background: url( "photo.png" );
width: 308px;
height: 80px;
list-style:none;}
I would appreciate any assistance with this matter.