Font hyperlink

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

Guest

How do I create a hyperlink that does not show an underline or how do I
create one that only shows an underline when the cursor is placed over it in?
 
Add some CSS to the <head> section of the page, just before </head>

<style type="text/css>
a {text-decoration: none;}
a:link {color: blue;}
a:visited {color: purple;}
a:active {color: red;}
a:hover {color: green; text-decoration: underline;}
</style>
</head>

This will affect every text link on the page. Change the colours to
suit your design.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp

FrontPage Support: http://www.frontpagemvps.com/
 
Back
Top