Link to home
Start Free TrialLog in
Avatar of TrueBlue
TrueBlueFlag for United States of America

asked on

Hyperlink is a different color than assigned

Hi!

I am trying to make the Order Now hyperlink the following color: #FF00FF

For some reason though it is blue.

Any ideas?

<tr>
   <td width="65">
   <img border="0" alt=" Spacer" src="images/trans_spacer.gif" width="65" height="91"></td>
    <td align="left" valign="top">
    <font size="2">
    <font color="#59669B" face="Arial"><b><%= plan_name(0) %>Hosting</b></font><br>
    </font><font face="Arial" size="1"><%= plan_size(0) %> Space<br>
    <%= plan_traffic(0) %> Traffic</font><br>
    <b><font size="2" color="#FF00FF">
    <a target="NEW" href="https://cp.domain.net:8443/psoft/servlet/psoft.hsphere.CP?action=signup&plan_id=<%= plan_id(0) %>&signup=yes&template_name=signup/begin.html/">
    Order Now</a></font></b><br>
    <font size="2">
    <a href="<%= plan_name(0) %>-hosting-plan.asp">
   <img border="0" alt="More Button" src="images/moreButton.gif" width="48" height="11"></a></font></td>
</tr>
ASKER CERTIFIED SOLUTION
Avatar of Zyloch
Zyloch
Flag of United States of America 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
Put this in your header:

<style type="text/css">

a { color:#FF00FF;}

</style>
Avatar of TrueBlue

ASKER

Hi Eternal Student!

I tried your suggestion, but it did not work.