How to text Hyperlink without the underline

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

Guest

When I create a text hyperlink the result is the text is always underlined.
is undelined. How can I create a text hyperlink without the resulting
hyperlinked text being underlined? Thanks.
 
Use CSS on your pseudo-class definitions and set text-decoration to none,
e.g.,

a:link, a:visited, a:hover, a:active { text-decoration:none; }
 
Use an in-line style for the hyperlink like this " style="text-decoration: none;"

Or add this to the head section to remove it from all links in the page.

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


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
Ok, well the way I did it on my site, was just unclick the "underline" or "U"
button in the top toolbar, while highlighting the link.
 
Back
Top