Underline in Hyperlinks

A

Anne

I have reviewed several of the discussion questions on hyperlinks with
underlines in Frontpage 2000. I've tried to type what I have learned in the
htlm view without any luck. What exactly do you type, and where exactly do
you type to have no underlines in the web site.

Thanks for your help
 
S

Steve Easton

To remove them from a page copy and paste this into the head section in code view:
<style>
a{text-decoration:none}
</style>

To remove them from an entire site place this:
a{text-decoration:none}
into an external style sheet and apply it to the entire web.

You make the style sheet with notepad and name it mystyle.css extension
It is then applied to the page using this in the head tag:
<link rel="stylesheet" type="text/css" href="mystyle.css">

You can name it anything you want.

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