this style (no underline)

J

Jen

Ok when I do that it works fine if I paste it directly on
the page; but now it won't work if I apply it the css?

Why is that? And should I pretty much delete the url
reference on all the scripts? thank you.
 
S

Steve Easton

If it's applied from a css file it
needs to be done differently.

BODY
a{
text-decoration: none;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}

As for the urls, if the url doesn't reference
a function that is creating the effect you want
then remove it.
 
L

LA

I actually got it working with the first instructions. So n
Thanks. But now should I be doing what you posted below?
 
S

Steve Easton

If you want to create a style sheet that you can apply to
all pages in your web, Yes.
 
L

LA

Just curious; what happens if I do it the other way; cause
that's how I had it and it appears to work?

Thanks again
 
Top