Hyperlink underlines

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

Guest

How do you remove the underline from a hyperlink in FP2000? I did a search in the group, but the only answer was not available. Thanks in advance!
 
In the HTML, <a style="text-decoration: none" href="yourlinkhere">link</a>

Or, in FrontPage, click on the link and click "underline" on the formatting
toolbar.

Matthew

JCampbell said:
How do you remove the underline from a hyperlink in FP2000? I did a
search in the group, but the only answer was not available. Thanks in
advance!
 
Thanks, I haven't had any luck with the "underline" button. I previously looked at the HTML, but I didn't know what to look for. I assume the "text decoration: none" parameter is the key.
 
In FP 2002 you must type the code, in FP 2003 place your cursor on the hyperlink and click the underline icon from your tool bar. That will do it. I'm trying to learn the reverse, remove the underline and hover with the underline visible. Any advice. Steve.
 
This does not work with any version of Netscape older than 6.0.

Put it in you "head" tags. It will fix up all the links on that page.

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

Matthew

Steve said:
In FP 2002 you must type the code, in FP 2003 place your cursor on the
hyperlink and click the underline icon from your tool bar. That will do it.
I'm trying to learn the reverse, remove the underline and hover with the
underline visible. Any advice. Steve.
 
<style type="text/css">
a {text-decoration: none;}
a: hover {text-decoration: underline;}
</style>
 
Be sure the "hover" line comes last.

Wally S

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

--
George Hester
__________________________________
Steve said:
In FP 2002 you must type the code, in FP 2003 place your cursor on the
hyperlink and click the underline icon from your tool bar. That will do it.
I'm trying to learn the reverse, remove the underline and hover with the
underline visible. Any advice. Steve.
 
Back
Top