PDA

View Full Version : Changing Default Skin Colors


Blumy
08-02-2009, 03:45 AM
I'm running a pretty basic forum and I like the simplicity of the default vBulletin skin. However, I'm looking to change the colors to match my homepage. I have changed the gradients, but what would be the best way to go about changing the rest of the colors?

vB Tree
08-02-2009, 08:47 AM
Go to your admin cp, expand the Styles & Templates link and click on Style Manager.

Look for your default skin, select All Style Options and press go.

Now scroll down a bit and you will see sections such as "Body". Click on the colour block and you can change it to whatever you like. If you need some help customising your forum, send me a PM and I will help you to the best of my abilities.

Good luck.

Blumy
08-02-2009, 05:52 PM
Also, is there any way to get rid of the underline on usernames? It does it on this site though.

Xtrato
08-02-2009, 06:05 PM
usually within the style... I would recommend doing some CSS Crash course..

text-decoration: none;

can be done in Body { or a:hover, a:active, body_ahover {

and


a:link, body_alink {


etc...

Blumy
08-02-2009, 09:07 PM
Yeah but where do i find the spot to add the code?

Xtrato
08-02-2009, 11:00 PM
Yeah but where do i find the spot to add the code?

have you done any reading on the CSS properties ,

should be under styles (your style ) and CSS

Blumy
08-03-2009, 12:27 AM
Yeah I read through that and everywhere it said text-decoration underline i changed it to none.

Xtrato
08-03-2009, 02:18 AM
did it work for you? , look trough what text specifically you are trying to edit .... each text might have its own class.. example td head etc..

Blumy
08-03-2009, 03:06 AM
No it didn't. I'm looking to change this underline:

http://i9.photobucket.com/albums/a72/blumhardt/webproblem.gif

Under the username.

Xtrato
08-04-2009, 02:12 AM
there is a class by :

class="bigusername"

so look for your class and change it to :

.bigusername {
font-size:14pt;
text-decoration:none;
}

Blumy
08-05-2009, 03:29 AM
Is that located in AdminCP -> Styles & Templates -> Postbit Templates -> Postbit/Postbit_legacy?

Lynne
08-05-2009, 03:47 AM
.bigusername is a css class. It is under styles & templates > main css > go to the bottom of the page under additional css definitions.

Blumy
08-06-2009, 01:22 AM
Aha found it. Looks much better, thank you! :)