View Full Version : same Color


ofi
09-22-2004, 09:58 PM
How can i let all text to be same Color, is there any tag to do this

littledeadgirl
09-22-2004, 10:03 PM
css

<style type="text/css">
A:link {
text-decoration : none;
color : #FFFFFF;
}
A:visited {
text-decoration : none;
color : #FFFFFF;
}
A:active {
text-decoration : none;
color : #FFFFFF;
}
A:hover {
text-decoration : underline;
cursor : help;
color : #FFFFFF;
}
body {
color : #FFFFFF;
background-color : #000000;
font-size : 7pt;
font-family : Trebuchet MS;
cursor : default;
text-align : justify;
line-height :9pt;
}

b, i, u {
color: #FFFFFF;
}

just change the colours n font n stuff

Dont bet on its right tho my css isn't exactly brilliant.

ofi
09-22-2004, 10:41 PM
ok
whats the code only for text

ofi
09-22-2004, 11:12 PM
no need, found it
thx