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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Still blue links?

Status
Not open for further replies.

zavsays

Technical User
Apr 19, 2001
117
US
I'm in the process of rebuilding my site which has built up a LOT of code over the years. I've specified new css type styles (and link colors) for the page ... but my links continue to be blue! I realize blue is Dreamweaver's default link color but I thought I changed that.

Once I straighten that out, I'll export the style sheet.
Thanks for any help
 
Code:
a:link {
	color: 663300;
	text-decoration: none;
}
a:visited {
	color: 663300;
	text-decoration: none;
should be
Code:
a:link {
	color: [b]#[/b]663300;
	text-decoration: none;
}
a:visited {
	color: [b]#[/b]663300;
	text-decoration: none;

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