Does anyone know how to change the active link and rollover link of specific text in a document. Not for the entire text with a:active but just for a single link.
| SitePoint Sponsor |
Does anyone know how to change the active link and rollover link of specific text in a document. Not for the entire text with a:active but just for a single link.


if you are saying for one specific link, then give that link a class:
and to style it with css:Code:<a href="#" class="coollink">Link</a>
Hope that helpsCode:a.coollink:hover { color: red; } a.coollink:active { color: blue; }
I tried that lol it didn't workI'll try again maybe I did something wrong.
Do you mean something like this?Code HTML4Strict:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <title>Untitled</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="generator" content="PSPad editor, www.pspad.com"> <style type="text/css"> a{color:black} span{color:red} a:hover,a:hover span{color:green} </style> </head> <body> <p><a href="#">A green link with <span>red colored</span> text</a></p> </body> </html>
Happy ADD/ADHD with Asperger's


Are you talking about :active or :hover here?
Save the Internet - Use Opera | May my mother rest in peace: 1943-2009
Dan Schulz - Design Team Advisor | Follow me on Twitter
SitePoint References: HTML CSS JavaScript | Become A Guru
WordPress SEO Checklist | What WordPress Plugins Do You Use?
Web Standards Curriculum | Image Free Equal Height Columns
i'm talking about all... active hover regular link colour whatever.
I already have the hover and link colour set for regular text but I want the link, hover, and active colour for my banner text to be different.
Dan I like your avatar by the way![]()


Uhm, why are you using a <font> tag?
Save the Internet - Use Opera | May my mother rest in peace: 1943-2009
Dan Schulz - Design Team Advisor | Follow me on Twitter
SitePoint References: HTML CSS JavaScript | Become A Guru
WordPress SEO Checklist | What WordPress Plugins Do You Use?
Web Standards Curriculum | Image Free Equal Height Columns
Bookmarks