How to use CSS to get text to display differently on different parts of a page??
Hello,
How would I have to alter the following script inside of a style sheet to get text in different locations on a page to display differently.
I have a handle on links using CSS. They are displaying the way I want them to. Below is an example of the CSS script I placed for the links in a left navigational column.
Code:
/* left nav links (over gold) main links */
a.lnavml:link {color: #FFFFFF; }
a.lnavml:visited {color: #000000; }
a.lnavml:hover {color: #CCCCCC; text-decoration: underline; }
Would appreciate any help with this.
WP