View Full Version : no underlines on text links???
WoodiE
10-30-2002, 08:31 PM
know this is an easy question, but I just had a brain fart...
How to I make it so my links in vBulletin do not have an underline?
I want to change my graphic postbit buttons to text, but dont want them underlined...can anyone help?
Thanks,
-Michael
filburt1
10-30-2002, 08:59 PM
For each postbit link, add this:
<a href="..." style="text-decoration:none">
WoodiE
10-30-2002, 09:06 PM
Aww man and I was so close....Thanks a bunch filburt1
-WoodiE
Kianor
10-31-2002, 10:22 PM
I think he's asking to not have links underlined in all his forum.
Is so, check your headinsert in admin cp/styles/font colors etc
find:
A:hover {
COLOR: {hovercolor}; TEXT-DECORATION: underline;
}
and replace it with:
A:hover {
COLOR: {hovercolor}; TEXT-DECORATION: none;
}
Byezz
imported_Speedy
04-23-2003, 06:19 PM
here is my head insert
<meta http-equiv="MSThemeCompatible" content="Yes">
<style type="text/css">
BODY {
SCROLLBAR-BASE-COLOR: {categorybackcolor};
SCROLLBAR-ARROW-COLOR: {categoryfontcolor};
}
SELECT {
FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;
FONT-SIZE: 11px;
COLOR: #000000;
BACKGROUND-COLOR: #CFCFCF
}
TEXTAREA, .bginput {
FONT-SIZE: 12px;
FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;
COLOR: #000000;
BACKGROUND-COLOR: #CFCFCF
}
A:link, A:visited, A:active {
COLOR: {linkcolor};
}
A:hover {
COLOR: {hovercolor};
}
#cat A:link, #cat A:visited, #cat A:active {
COLOR: {categoryfontcolor};
TEXT-DECORATION: none;
}
#cat A:hover {
COLOR: {categoryfontcolor};
TEXT-DECORATION: underline;
}
#ltlink A:link, #ltlink A:visited, #ltlink A:active {
COLOR: {linkcolor};
TEXT-DECORATION: none;
}
#ltlink A:hover {
COLOR: {hovercolor};
TEXT-DECORATION: underline;
}
.thtcolor {
COLOR: {tableheadtextcolor};
}
</style>
$headnewpm
how do i do this?
imported_Blindchild02
04-23-2003, 11:28 PM
add it under this
A:link, A:visited, A:active {
COLOR: {linkcolor};
}
A:hover {
COLOR: {hovercolor};
both of those
vBulletin® v3.8.12 by vBS, Copyright ©2000-2024, vBulletin Solutions Inc.