PDA

View Full Version : 1 last stylevar


FortressGamers
01-05-2011, 07:27 PM
After much blood sweat & tears... reading, searching, trial & error... I turn to you vBulletin forums....


On the About Me & Visitor Messages on the profile page, part of the headings, and area surrounding the input are blue...

What variable changes this?

See site here: http://forums.playigl.com/member.php?1-Absolute&tab=aboutme&simple=1

It should stick out like a sore thumb.

Thanks in advance.

Xtrato
01-06-2011, 07:49 PM
I couldnt find it off the bat , but you can overwrite them in any additional.css file ..


.userprof_headers {

}

and the borders too:

.userprof_headers_border {

}

and if that doesn't work ,its because the CSS comes before the declaration of the stylevars , in that case add the " !important " declaration to your style such as :

.userprof_headers {
background-color: blue !important;
}

--------------- Added 1294350672 at 1294350672 ---------------

oh by the way your forums are pushing against the borders . you should add this to your body wrapper:

.body_wrapper {
padding: 0 10px;
}

it looks neater ;).

FortressGamers
01-06-2011, 07:59 PM
add 10px padding to left & right - Thanks!

Ah yes, colours look much better!

ty ty