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

  • Thread starter Thread starter Guest
  • Start date Start date
Thank you Murray. Am a bit of a novice with this. What do you mean by CSS and
where do I put the code and exactly what part of the code do I use i.e.
a:link & the section in brackets?

Thanks again!
 
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>
 
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?
 
Refresh your browser. Look at the code on the page with View | Source, and
see if you see the change you made.
 
Back
Top