Forum Moderators: not2easy

Message Too Old, No Replies

body wide setting visiting links & link color in CSS

         

AffiliateDreamer

3:49 am on Apr 15, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Hi,

Normally w/o using CSS, I set visiting and link colors in the body tag like:

<body vlink="..." link="...">

I can't seem to figure out how to do this in CSS. I'm using topsytle and there doesn't seem to be a visiting-link or link attribute when I do:

body
{

}

ideas?

deliriumtremens

4:28 am on Apr 15, 2006 (gmt 0)

10+ Year Member



You don't need to use "body", just do this:

a:link {

}

a:visited {

}

and that will work for all the links in the document.

AffiliateDreamer

8:21 pm on Apr 15, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



oh i see, i thought it was a setting within body hehe.

thanks.