link bar font color

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can change the font and size but can not change the color, it always
remains the blue link color, can I change this and how?
 
if you're using a theme that option isn't where you'd expect it. it's in:
(FrontPage 2003) theme/ modify theme/ colors dialog (custom tab). select
the element from the dropdown at the upper left, then the color.

HTH

--
Chris Leeds,
Microsoft MVP-FrontPage

If you make web sites for other people, you should check out ContentSeed:
http://contentseed.com/
 
I am not using a theme, any other suggestions as to where to look?
--
Thanks,,
Kim


Chris Leeds said:
if you're using a theme that option isn't where you'd expect it. it's in:
(FrontPage 2003) theme/ modify theme/ colors dialog (custom tab). select
the element from the dropdown at the upper left, then the color.

HTH

--
Chris Leeds,
Microsoft MVP-FrontPage

If you make web sites for other people, you should check out ContentSeed:
http://contentseed.com/
--
 
By using CSS at the top of the page...
In "code view" just before the closing head </head> tag...
Copy then paste this in the page...

<style type="text/css">
a {
text-decoration: none;
border: none;
color: #000000;
background-color: transparent;
}
a:link {
text-decoration: none;
}
a:visited {
color: #000088;
}

a:hover {
color: #FF0000;
}
</style>

This is black text then on hover Red. Then visited dark blue...
Change the RGB color code to make them what you want...

Tom

|I can change the font and size but can not change the color, it always
| remains the blue link color, can I change this and how?
| --
| Thanks,,
| Kim
 
The Easy way is right click on the page then "Page Properties"
(new window) then click on the formatting tab Then under
"Hyperlink" change the color also you can change it for visited
and active

bob
|I can change the font and size but can not change the color, it always
| remains the blue link color, can I change this and how?
| --
| Thanks,,
| Kim
 
if you're not using a theme, where's the link bar from?

--
Chris Leeds,
Microsoft MVP-FrontPage

If you make web sites for other people, you should check out ContentSeed:
http://contentseed.com/
--
Kim K said:
I am not using a theme, any other suggestions as to where to look?
 
Back
Top