So I was trying to make an image be clickable. This is a SUPER easy thing to do, but for some reason, it doesn’t seem to be working. It doesn’t even acknowledge that there is a link.
<ul>
<li><a href="register"><img src="images/register.png"></a></li>
<li><a href="login"><img src="images/login.png"/></a></li>
</ul>
Is there something I’m doing wrong? Thanks, guys. 🙂
The only css I think refers to it is:
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none}
A:hover {text-decoration: underline;color:#f60051}
#sidebar li {
list-style: none;
}
I had a div in front of everything, so it was blocking it.