PDA

View Full Version : Vlink



theundeadhero
04-17-2005, 11:18 AM
Okay, at the top of my sourcepage my style has visited links set to change to a set color. It's for my navigation window off to the side. For the main part of my page I don't want the links to change color when visited. Is there a way to set Vlink up window specific or change the style mid-page? I'm sure there is and I just don't know it.

Samuraid
04-17-2005, 04:32 PM
a:visited {} is the CSS for visited links. Something like this should work:

.class1 A:link {text-decoration: none}
.class1 A:visited {text-decoration: none}
.class1 A:active {text-decoration: none}
.class1 A:hover {text-decoration: underline; color: red;}

theundeadhero
04-17-2005, 04:46 PM
Okay, CSS is still very foriegn to me but I at least know how to get that to work from the Frontsite. :)

Shoeberto
04-17-2005, 05:18 PM
I think as long as you do the include for text/style-css (correct me if I'm wrong, I'm also very new to CSS), then you can just do inline functions on a per-link basis. I don't know the exact syntax, but putting the a:visited as something different in an inline style on the link itself should change it.

theundeadhero
04-17-2005, 05:53 PM
What I did was put the CSS into the table itself and then put the regular html tags into the body. It worked, and even better than I planned. I'm sure you could set it up link by link though, judging from the nature of it.