Underline in Hyperlinks

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

Guest

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
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top