How to allow users to have a permanent font type and color?

I think this depends on the vBulletin skin which is being used. But I guess it could be possible from the vBulletin Administrator Control Panel. Just take a look, it could be ther somewhere.
 
unsure about default posting font color the members proably just choose it when creating a post.

To change the users name color in....
admincp>>Usergroups>>Usergroup Manager
open each usergroup and edit the "Username HTML Markup" section
1st box:
PHP:
<span style= "color: red;">
2nd box:
PHP:
</span>

change the color for each to whatever you want.
 
every user is allowed to do this through their control panel if you allow them to do so
PHP:
AdminCP>usergroups>usergroup manager>Profile styling permissions

You can allow fonts, colors, borders etc

Any questions please ask
 
of course is there you have to choose which usergroup you want to allow changing style, for exple members, and then you will find it down bottom above usergroup options, i have attached a picture have look
 
khsofiane said:
of course is there you have to choose which usergroup you want to allow changing style, for exple members, and then you will find it down bottom above usergroup options, i have attached a picture have look

He's talking about posts, not profile styling, read.
 
sorry i did not understand the question, well in that case you need to add additional CSS in yoyr style, but becarful always do backup in case somethg goes wrong.

Open your postbit template.
FIND:
Code:
<div id="post_message_$post[postid]">$post[message]</div>
replace it with
Code:
<div id="post_message_$post[postid]" class="post">$post[message]</div>
then go to

PHP:
admincp>styles and templates
then choose in the drop down menu Main CSS for the style you want down the bottom of the page you can add in CSS for the chosen theme for exple:

PHP:
 post a {
color:#yourcolour;
background:none;
}
this will result in texts in the posts will be yourcolour, you can do red, blue etc.
 
Back
Top