Underlined Hyperlink Text

  • Thread starter Thread starter Nick
  • Start date Start date
N

Nick

Is there anyway to create a hyperlink text on a FrontPage
website that isn't underlined?

Any help is greatly appreciated.

Nick
 
Use a style: text-decoration:none

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Add this between the head tags, to apply to all hyperlinks.

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

Or if you only want it to apply to one hyperlink, make it an inline style
for the link.
style="text-decoration: none;"


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer
 
Thank you for your help.
-----Original Message-----
Add this between the head tags, to apply to all hyperlinks.

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

Or if you only want it to apply to one hyperlink, make it an inline style
for the link.
style="text-decoration: none;"


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed..................
...............................with a computer



.
 
Back
Top