text hyperlink color

  • Thread starter Thread starter Karen
  • Start date Start date
K

Karen

I have FP2000. I want a certain text hyperlink to have a certain color (
while mouse is not above it).

Is it possible and how?

Regards

Maloc
 
Select the link, then font, then set your color or learn CSS.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Thanks,
I'll certainly do one of your advices, but is it possible to have a certain
color only on a certain hyperlink while all the other hyperlinks color are
different?

Thanks again and good luck

Maloc
 
Yes. That would be done using containers or classes for the links, e.g.,

<p>There are two hyperlinks here - <a class="one" href="one.html">one</a>
and <a class="two" href="two.html">two</a></p>

and then use this CSS -

a { your styles for all links on the page }
a.one { your styles for all links with class="one" on the page }
a.two { your styles for all links with class="two" on the page }

It's easy enough to do manually, but since I don't have FP2000, I cannot
tell you how to do it using FP's UI - sorry.
 
Yes, either method will allow that.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Back
Top