this style (no underline)

  • Thread starter Thread starter Jen
  • Start date Start date
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.
 
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.
 
I actually got it working with the first instructions. So n
Thanks. But now should I be doing what you posted below?
 
If you want to create a style sheet that you can apply to
all pages in your web, Yes.
 
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
 
Back
Top