Removing the underline from text with a hyperlink

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

Guest

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
 
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/
----------------------------------------
 
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/
 
Back
Top