PDA

View Full Version : Could you make me a text/css for my text please


SolidWing68
01-29-2003, 05:00 PM
Hi, I need some assistant in making my code for text, I have the code just dont know how to apply the attributes..
For A:link(color White) (Text Decoration None)
For A:active(color White) (Text Decoration None)
For A:visited(color White) (Text Decoration None)
For A:hover(color Red) (Text Decoration None)

Thanks

<STYLE type="text/css">
<!--
A:link {TEXT-DECORATION: none}
A:active {TEXT-DECORATION: none}
A:visited {TEXT-DECORATION: none}
A:hover {TEXT-DECORATION: underline}
-->
</STYLE>

redhead
01-29-2003, 05:11 PM
try this:

<STYLE type="text/css">
<!--
A:link {
TEXT-DECORATION: none;
color: #FFFFFF;
}
A:active {
TEXT-DECORATION: none;
}
A:visited {
TEXT-DECORATION: none;
}
A:hover {
TEXT-DECORATION: none;
color: #FF0000;
}
-->
</STYLE>

SolidWing68
01-29-2003, 05:12 PM
Thankyou much :)

cg9com
01-29-2003, 05:31 PM
i wouldnt use caps tho

ronaldb66
01-30-2003, 10:47 AM
Since your definitions share a lot of common property values, following is shorter and simpler:

<style type="text/css">
a {color: white; text-decoration: none;
}
a:hover {color: red;
}
</style>