Link to home
Start Free TrialLog in
Avatar of Lia Nungaray
Lia NungarayFlag for United States of America

asked on

Add font color to a link

I have the following link:

<a id="<pega:reference name='$save(strDisplayText)' />"  href="javascript:toggle('<pega:reference name="$save(strDisplayText)" />' ,'<pega:reference name="$save(strtoggleText)" />');"  style="font-weight:bold">EXPAND FOR MORE FEATURES </a>

How can I add a format color directly in the link without using CSS?
ASKER CERTIFIED SOLUTION
Avatar of Francisco Igor
Francisco Igor
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Lia Nungaray

ASKER

Exactly what I needed, thanks!
How can I make it underline when I hover my mouse over it?
Add  into the style attribute

;text-decoration:underline

Open in new window

 

to underline the link

and

;text-decoration:none

Open in new window

 

to hide the underlined format