Jump to content

[SOLVED] Individual Link Colors (DREAMWEAVER MX 2004)


Recommended Posts

Give it your link a class then apply a css style to that link via the class, eg:

 

--- HTML ---
<a href="http://www.google.com" class="googlelink">Google</a>

--- CSS ---
a.googlelink {
   color: red;
}

a.googlelink:hover {
   color: yellow;
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.