Changing nav. link color - How do I do it?

G

Gloria

www.handtohand.info >>>>>site
working in FP2003
WIN Xp pro

I want to change the 'visited link' title to pink, and turquoise for the third link color.
I have changed the link for what page you're on to "lime green", but that seems as far as I can go....

I am working with a custom theme, but NOT the nav. bars for that theme, only basic

'link' >> like this with an underline

I noticed the code for this font color is: FF0000_ but what is that link called and how can I assign a color to it?

Don't want a hover color

Thanks so much in advance for any help/suggestions
Gloria
 
S

Stefan B Rusynko

For pages / links not using the theme apply a CSS style and class
Create a style in the head section for the table links
<style type="text/css">
a.mycolors {color: red; text-decoration: none}
a.mycolors:link {color: red; text-decoration: none}
a.mycolors:visited {color: green; text-decoration: none}
a.mycolors:hover {color: blue; text-decoration: underline}
a.mycolors:active {color: black; text-decoration: none}
</style>
(change the colors above to whatever you want)

And apply the class to the links
<a href="yourlink.htm" class="mycolors">

For the Theme use Format Theme Modify/Customize Colors Custom
- save as a new theme name and apply the new theme to your pages
- FP Theme styles will overrule any custom CSS styles

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


www.handtohand.info >>>>>site
working in FP2003
WIN Xp pro

I want to change the 'visited link' title to pink, and turquoise for the third link color.
I have changed the link for what page you're on to "lime green", but that seems as far as I can go....

I am working with a custom theme, but NOT the nav. bars for that theme, only basic

'link' >> like this with an underline

I noticed the code for this font color is: FF0000_ but what is that link called and how can I assign a color to it?

Don't want a hover color

Thanks so much in advance for any help/suggestions
Gloria
 

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