NON-UNDERLINED LINKS. how???

N

news

I was asked to take over the maintenance of a web site as a favor to a
friend...for free. It has been costing them too much so I offered to help.

I transferred the web site and I have been making some changes but for the
most part keeping what they had.
I have no relationship with the designer and I don't think they want to talk
to me.

Overall the web is pretty simple BUT...they created a menu system that I
LIKE but don't understand. The menu names look like normal text but do not
have underlines. I have tried to get rid of underlined links previously but
could not.

I have been even able to copy the menu text to other places on the page and
rename and add new links...but I don't know what the hell I'm doing!

This is probably a "duuuh"....but I have been through my 2 inch thick FP2000
book and can't find anything

Alex
 
L

lentin

This is taken from my css page. It's the text decoration="none" that does it.

a:link, a:visited {color: #6b0200;text-decoration: none;}
a:hover, a:active {color: #075700;text-decoration: none;}
 
Top