PDA

View Full Version : how to get rid off the..


Grealm
07-24-2002, 02:12 AM
....underline on all links? not the hover links..

shiva
07-24-2002, 06:01 AM
Go to your CSS style sheet, and look for your link codes. Here's a example:

A:link {BACKGROUND: none; font-weight: bold; color: #003399; text-decoration: none}

The part that turns off the underline is the text-decoration: none part, so thats what you need to add to each of your link codes

This is all in your Head Insert section if you didn't already know.

Grealm
07-24-2002, 11:14 PM
ya got it thanks. :)

stark427
02-24-2003, 03:19 PM
Actually i have the same question.
Here is the head-insert code.
I cannot figure out what I should change to get rid of the underlined links. (not the hover).

Cause the way I see it, the css style code is as it is supposed to be in order to not have underlined links :rolleyes:

any ideas?


<style type="text/css">
A.post:link { COLOR: #CCD5E1;
TEXT-DECORATION: none;}
A.post:visited { COLOR: #CCD5E1;
TEXT-DECORATION: none;}
A.post:active { COLOR: #CCD5E1;
TEXT-DECORATION: none;}
A.post:hover { COLOR: #6C839F;
TEXT-DECORATION: none;}
A.nav:link { COLOR: #FFFFFF;
TEXT-DECORATION: none;}
A.nav:visited { COLOR: #FFFFFF;
TEXT-DECORATION: none;}
A.nav:active { COLOR: #FFFFFF;
TEXT-DECORATION: none;}
A.nav:hover { COLOR: #020D1B;
TEXT-DECORATION: none;}
A.title:link { COLOR: #6C839F;
TEXT-DECORATION: none;}
A.title:visited { COLOR: #6C839F;
TEXT-DECORATION: none;}
A.title:active { COLOR: #6C839F;
TEXT-DECORATION: none;}
A.title:hover { COLOR: #FFFFFF;
TEXT-DECORATION: none;}
BODY {
MARGIN-TOP: 0px;
MARGIN-BOTTOM: 0px;
MARGIN-LEFT: 0px;
MARGIN-RIGHT: 0px;
SCROLLBAR-BASE-COLOR: #162333;
SCROLLBAR-ARROW-COLOR: #FFFFFF;
}
SELECT {
FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;
FONT-SIZE: 11px;
COLOR: #CCD5E1;
BACKGROUND-COLOR: #000000
}
TEXTAREA, .bginput {
FONT-SIZE: 12px;
FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;
COLOR: #CCD5E1;
BACKGROUND-COLOR: #000000
}
A:link, A:visited, A:active {
COLOR: #26354F;
}
A:hover {
COLOR: #7C8EA7;
}
#cat A:link, #cat A:visited, #cat A:active {
COLOR: #FFFFFF;
TEXT-DECORATION: none;
}
#cat A:hover {
COLOR: #FFFFFF;
TEXT-DECORATION: underline;
}
#ltlink A:link, #ltlink A:visited, #ltlink A:active {
COLOR: #26354F;
TEXT-DECORATION: none;
}
#ltlink A:hover {
COLOR: #7C8EA7;
TEXT-DECORATION: underline;
}
.thtcolor {
COLOR: #FFFFFF;
}
</style>

Brad
02-24-2003, 04:07 PM
stark427, please go to this (http://www.vbulletin.com/members/forums.php) page and enter your vBT email address, to show you are licensed. (you will need to use your customer number and password to access that page)
Thank you.

stark427
02-24-2003, 09:23 PM
Originally posted by Anime-loo
stark427, please go to this (http://www.vbulletin.com/members/forums.php) page and enter your vBT email address, to show you are licensed. (you will need to use your customer number and password to access that page)
Thank you.

I have done this thing for months now.
Two emails are there.
One is mine - the one with which I got the license and another which is from one of the moderators of my forum.

I'm not sure I understand what the problem is here.
Do you want me to PM you my email address?
Would this help?

thanx in advance

p.s. any ideas for the "links" question ? :)

filburt1
02-24-2003, 09:31 PM
Originally posted by stark427


I have done this thing for months now.
Two emails are there.
One is mine - the one with which I got the license and another which is from one of the moderators of my forum.

I'm not sure I understand what the problem is here.
Do you want me to PM you my email address?
Would this help?

thanx in advance

p.s. any ideas for the "links" question ? :)

Make the third e-mail the e-mail address you use in your account here.

stark427
02-24-2003, 09:55 PM
Originally posted by filburt1


Make the third e-mail the e-mail address you use in your account here.

done :)

filburt1
02-24-2003, 10:03 PM
Thanks :)

stark427
02-27-2003, 11:06 AM
Ok I found the solution myself.
For anyone who is interested :

replace this :

A:link, A:visited, A:active {
COLOR: #26354F;
}


with this :


A:link, A:visited, A:active {
COLOR: #26354F;
TEXT-DECORATION: none;
}


and

replace this :

A:hover {
COLOR: #7C8EA7;
}


with this :


A:hover {
COLOR: #7C8EA7;
TEXT-DECORATION: underline;
}



The 1st replacement removes the line under the links.

the 2nd replacement will make your links be underlined only when you put the cursor over them.

roxics
07-09-2003, 11:36 PM
Thanks stark427 :)

spick
08-02-2003, 06:52 PM
Thanks stark427 :)
doesnt work for me.