Take a look at the links below:
HTML Goodies | ESPN | |
Van Halen News Desk | ABC News | Pepsi |
Notice anything about them? They are not underlined, yet they are still active. (If they are underlined on your browser, then you do not have a browser level high enough to use this command; you still can use it, though, because others will have the correct browser!)
For a good while, people would write to me and ask how to rid the links on their page of the awful underline. I would always write back that you could always get rid of it: Just go into your browser’s Preferences and set it so the links are not underlined. Done.
But I knew what they wanted — they wanted the links non-underlined on all browsers, not just theirs. Well, here’s how you do it:
<STYLE>
<!–
A{text-decoration:none}
–>
</STYLE>
You place that Style Command statement inside the HEAD commands on your HTML document. In that position, it affects all the links and makes them plain. They retain their coloring, but lose their underline.
Affecting Just One Link
I have been given two ways of making only one link non-underlined. Here they are in their own words.
This suggestion by Luke Erichsen:
There IS a way to make just one link not underlined. Simply do this:
This suggestion by >Nikhil Gupta:
Place this style command in place of the one you have above:
<style>
a.1{text-decoration:none}
a.2{text-decoration:underline}
</style>
(From Joe:The numbers 1 and 2 are classes. Referring a link to class 1 does the “none” text decoration, class 2 does the other.)
And then later in the program place this:
This link is not underlined…</a>
This is for the link which should not be underlined:
To underline it replace class=”1″ with class=”2″ like above.
Enjoy!