Removing the underline from text with a hyperlink

S

Steve

Hi,
I'm using frontpage 2003, and wondered if anyone knows how to remove the
underline from text that I have attached a hyperlink to. Please help!
Many thanks
 
T

Trevor L.

Steve said:
Hi,
I'm using frontpage 2003, and wondered if anyone knows how to remove
the underline from text that I have attached a hyperlink to. Please
help! Many thanks


Go to Code View
Add this into the <head> section

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

</style>

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
S

Steve

Thanks Trevor...in fact all I had to do was highlight the text, click font
and deselect underline!

Trevor L. said:
Steve said:
Hi,
I'm using frontpage 2003, and wondered if anyone knows how to remove
the underline from text that I have attached a hyperlink to. Please
help! Many thanks


Go to Code View
Add this into the <head> section

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

</style>

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
Top