Is there a way to stop underlining text hyperlinks in FrontPage?

R

Ronx

In HTML or Code view, find the </head> tag near the top of the code,
and add to it like this:


<style type="text/css">
a:link {text-decoration:none;}
</style>
</head>
 
T

Tracy

Hi Ron

I tried this and the underline has disappeared in my FrontPage file but when
I preview it in a web page, the underlines are there. Any further suggestions?
 
M

Murray

Refresh your browser. Look at the code on the page with View | Source, and
see if you see the change you made.
 
Top