FreakyG'sMom |
01-16-2012 03:43 AM |
Quote:
Originally Posted by BajaBoatOwners
(Post 2261892)
I guess I'm not as knowledgeable about Vbulletin 4.0 as I thought. Where are you guys editing this? It won't let me edit where I thought I could.
|
Admin -> Cpanel -> Style Manager -> (pick skin template) -> Choose 'Edit Templates'
Find ' CSS Templates' in the list, double click it. Nested templates will appear underneath. Double click on ' Additional.CSS'
The editor will open up. Add the styles as suggested in the previous posts, then save.
For example:
Code:
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* THE FOLLOWING CONTROLS HOW A URL LINK LOOKS WITHIN A THREAD POSTING. */
/* THE FIRST CONTROLS URL LINKS, THE SECOND URLS IN SIGNATURES */
/* THE FIRST TWO VARIABLES CONTROL HOW A LINK LOOKS BY DEFAULT. THE SECOND TWO */
/* CONTROL HOW THOSE SAME TWO LINKS EACH LOOK WHEN HOVERED BY THE MOUSE POINTER */
/* Last Edited for Production on 01-15-12 */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.postcontent a {
color:#1E639D;
}
.signature a {
color:#1E639D;
}
.postcontent a:hover {
color: red;
}
.signature a:hover {
color: red;
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
You'll notice that I comment everything I add to the CSS. That way, I can reference my notes later, or others who edit afterwards can also follow.
Good luck :)
|