Frontpage 2003 Links

O

Orlando Gondar

Can someone correct this for me, I had look for variations
but this I had not found any one.

What I am trying to do is that any link on the page ( FP 2003 )
will not show the underline, and will not use the link's colors.

The code below works perfect but one....

<STYLE>
a: link { text-decoration: none;}
a: active { text-decoration: none;}
a: visited { text-decoration: none;}
</STYLE>

This one does nothing: a: visited { text-decoration: none;}
After visiting the link, the links still change the color.

Thanks
 
T

Thomas A. Rowe

Here is how I handle that:

<style>
<!--
a{text-decoration:none}
//-->
</style>

Then I select the link(s), and right click, fonts, make sure the color is set to Automatic, then I
set the color I want to the link to always be.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
R

Ronx

<STYLE>
a: link { text-decoration: none;color: blue;}
a: active { text-decoration: none;color: blue;}
a: visited { text-decoration: none;color: blue;}
a:hover {text-decoration: none;color: red;}
</STYLE>

Ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top