Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

v-link properties

Status
Not open for further replies.

lpgagirl

Technical User
Joined
Feb 3, 2003
Messages
202
Location
CA
I know that I can change the page properties so that I can have all v-links a certain colour ect...What I would like to do is have the v-links remain the colour that is identified in the font attributes. I have text that is red, some yellow and some blue. I do not want those colours altered once visited. How can I achieve this?

Thanks,


Jeannie
 
If you are styling the links in a stylesheet just add the visited ones to the same rule...
Code:
div#navcol a, [b][COLOR=blue]div#navcol a:visited[/color][/b] {
	display: block;
	width: 100%;
	margin: 0 3px 0 0; padding: 1px 10px 1px 5px;
	text-decoration: none;
	border-right: 1px solid rgb(60%,50%,40%);
	color: rgb(30%,30%,60%); background: transparent;
}

Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top