PDA

View Full Version : colorize the links


the one
02-07-2018, 05:16 AM
Hi,

We are looking to colorize the links inside the message body in the postbit different from the color of the other links. We would like the links to appear in orange while inert, and in red when one hovers the mouse over them. We are running vBulletin 4.2.1

Can anyone advise? Thanks in advance

MarkFL
02-07-2018, 05:33 AM
You could add the following to your "additional.css" template:

.postbody a, .postpreview a {
color: #ff8000 !important;
font-weight: bold;
}

.postbody a:hover, .postpreview a:hover {
color: #ff0000 !important;
}

the one
02-07-2018, 12:12 PM
You could add the following to your "additional.css" template:

.postbody a, .postpreview a {
color: #ff8000 !important;
font-weight: bold;
}

.postbody a:hover, .postpreview a:hover {
color: #ff0000 !important;
}

Thats done it :)

many thanks