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

How to make link text bold after click on it

Status
Not open for further replies.

yacanna

Programmer
Oct 24, 2003
15
US
Can anyboday help here..

I have few text links in a ASP file, for example:

Accessoreis | Accomodations

The user clik on the hyperlink, for example:
"Accessories", AFTER the clicking, the "Accessories" text stay bold.

What is the easy way to accomplish this?

Thank you very much!
 
You might be able to do this with CSS stylesheets using the a:visited tag.
 
Thanks,

I have used css file
A:visited { text-decoration: bold }

somehow it doesn't work. After clicked on the link. It doesn't stay bold.
 
try this:

A:link, A:visited { font-weight : bold }

or just

A:visited { font-weight : bold }


-DNG

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top