help

B

Bacchus

hi,

I am trying to add blue text. Now the problem lies when I try to make the
text blue and when I preview it, it comes out purple. This only happens
with 2 of my text boxes. The others come out blue like they are supposed
to.

Can anyone tell me what I am doing?

thanks
 
T

Thomas A. Rowe

Are these hyperlinks?

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

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

Thomas A. Rowe

They turn purple because you have visited them in your browsers. For new site visitors they will
appear blue, but once they have viewed the page, they will see purple also.

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

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

Nicholas Malone

You can change link colors through Right Click>Page
Properties>Background or go into the HTML and find the
colors in hexadecimal:
link="#000066" vlink="#808080" alink="#CC3300"

If you don't want underlined links put this in the <HEAD >
of the page (minus the extra spaces in the tags.

<STYLE >
<!--
A{text-decoration:none}
-->
</STYLE >


-----Original Message-----
They turn purple because you have visited them in your
browsers. For new site visitors they will
 
D

Dwayne Conyers

You need to create a CSS style that sets the properties of your hyperlinks
when they have been visited.
 
Top