|
Hello,
I am not schooled in CSS, just fooling around with it on a website. I cannot seem to get the b class links to have an underline effect while hovering as opposed to just a static underline. Here is my code, I would appreciate any help. Thanks in advance!
<style type="text/css">
<!--
A:link { text-decoration: none; color:#FFFFFF }
A:visited { text-decoration: none; color:#FFFFFF }
A:active { text-decoration: none; color:#993300 }
A:hover { text-decoration: underline; color:#FFFFFF }
b.first { text-decoration: none; color: #000000 }
-->
</style>
|