OK, is there a way to get rid of the underline in links, using HTML or CSS?

MikeMike

Lifer
Feb 6, 2000
45,885
66
91
topic,

Here is the page, if you look at the bottom, where it says higherhost the blue underline is all i need to remove

It is slightly annoying if you notice it, and i noticced it.

Feel free to look at the source, as it is all CSS, and the font properties are done right with the text (later on might put the up with the CSS properties)

tell me what you think is wrong with the page if anything too. critique it out the a-hole, and i will be happy.

i think i am going to add the text to the right of the flash menu, in its own little box, which will have a border, and slight shading to add a 3d look, what do you think of that idea?
 

igowerf

Diamond Member
Jun 27, 2000
7,697
1
76
a
{
text-decoration: none;
}

That removes ALL underlines from links. If you want to just remove it from that one link, do something like:

a.host_link
{
text-decoration: none;
}


<a href="http://www.higherhost.com" class="host_link">HigherHost</a>
 

MikeMike

Lifer
Feb 6, 2000
45,885
66
91
Originally posted by: igowerf
a
{
text-decoration: none;
}

That removes ALL underlines from links. If you want to just remove it from that one link, do something like:

a.host_link
{
text-decoration: none;
}


<a href="http://www.higherhost.com" class="host_link">HigherHost</a>

thanks, what do you think of the site?
 

igowerf

Diamond Member
Jun 27, 2000
7,697
1
76
I like the design, although the BWR Supply logo at the top seems a little too large for the page. I'm viewing it at 1400x1050 resolution.