PDA

View Full Version : Link Hover Color


Logikos
09-29-2003, 07:15 PM
Just wondering what the tag code is for making one link a diffrent hover and underline color from the rest of the site. <a href="site.com" class=hover"#ffffff" class="underline">Link here</a>

How off am i? lol

Bad Bunny
09-29-2003, 07:56 PM
If you have a class defined for it, that ios when you would use the class tag. Since you seem to want to do it inline, try using style instead of class.

Logikos
09-29-2003, 10:58 PM
i'll give it a shot really fast, i now know how to set the CSS but it dont seemed to be working, i'll try really quick to see if it works, if not i'll post what i added

Logikos
09-29-2003, 11:03 PM
okay the style="hover" didnt work. (didnt think it would anyways)
so heres what i did...

In "headinclude" i Put this

.new {
COLOR: red;
}
.new A:hover {
COLOR: white;
}

Then placed this
<a class="new" href="site.com">Privacy Statement </a>

Didnt work, what am i doing wrong?

mx3
09-30-2003, 01:39 AM
Study the rest of the headinclude template to see how it works, thats what I usually do.