Hyperlinks to bookmarks won't stay blue

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

Guest

I have just published my first site. 3 pages have hyperlinks to bookmarks on
the same page. On IE, they appear purple and do not change color, as if they
have been clicked already. If I clear my history and refresh the page, they
turn blue. But as soon as I go to another page, they all turn purple again.
This is only for the links to bookmarks, not my other hyperlinks. And, it is
only on IE, not Firefox or Netscape. In the browser preview function of FP,
it is also fine. I have tried changing he colors in the page properties
area, but it keeps reading as if it has been read. An example is
http://www.robertkellerca.com/acupuncture.htm. I would really appreciate any
feedback. Thanks.
 
You will need to use CSS to manage the link colors

<style type="text/css">
a:link { color: Blue; }
a:visited { color: Blue; }
a:active { color: Blue; }
a:hover { color: Blue; }
</style>



--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Back
Top