please help- underlining challenge

S

shannon

I can't seem to make the underlining go away on my page to page links...you
know "home, about us, etc."

I of course know all about normal underlining....going to font, clicking or
unclicking underlining....I can't make these stupid underlines go away! It
will let me change size, color and type of font on the links but the
underline remains.

Please help!!!! ready to pull out hair
 
R

Ronx

You will need some CSS
In the <head section of the page (Code view, just before the </head> tag)
add:

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

This will remove underlines from EVERY link in the page. If you give a link
to your page we can propose a modification to the CSS and HTML to restrict
the non-underlines to just the main navigation bar(s).

Suggest you take a look at the CSS tutorials at http://w3schools.com

--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.
 

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

Top