Hypertext Underline

R

Ray

Is it possible to have no underline on hypertext? I know I can convert the
text to graphic first but I would rather not do that
 
D

David Berry

Switch to Code View and add this before the </HEAD> tag

<style>
<!--
a{text-decoration:none}
//-->
</style>
 
M

Murray

The comments are definitely unnecessary, and in particular, the closing one
you have will cause an error. If you want them, they should be <!-- and -->
only.
 
T

Tom Miller

a {text-decoration: none;
}
</style>
When I don't have an underline on a link I really like it to re-act when you
move the cursor over it. The code seems to go something like this (most of
this is from an external .CSS file):
----------------------------snip----------------------
a:link
{
color: rgb(51,153,255);
text-decoration: none;

}
a:visited
{
color: rgb(51,102,204);
}
/* a hover must come after the "link/visited stuff to work */
a:hover
{
color: red; font-weight: bold;
}
/* an active must come after a hover to work */
a:active
{
color: rgb(255,153,0);
}
----------------------------snip------------------
I started using underlines again because my users were having trouble
finding the "menu".....
 

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