PDA

View Full Version : Changing Hypertext color


asian42die4
03-13-2003, 03:16 AM
Is there anyway from changing the hyper text color? I dont want that blue if not visited and purple when visited...As i have a black backround...is there anyway i can change the color?

relyt
03-13-2003, 03:28 AM
this is what i do

<body bgcolor="#FFFFFF" alink="#555555" vlink="#555555" hlink="#555555" link="#555555">

change the numbers after ?link to whatever you want

redhead
03-13-2003, 04:24 PM
i'd lean toward CSS:

<style>
a:link { /*a normal link*/
color: #000000;
}
a:visited {/*a visited link*/
color: #FF0000;
}
a:active { /*an active link*/
color: #00FF00;
}
a:hover { /*a link with the mouse over it*/
color: #0000FF;
}
</style>

this way you can mess about with underlines and everything... and discover the freedom of styling with CSS :)...