TCE Killa |
03-03-2008 09:44 PM |
Quote:
Originally Posted by yoksito
(Post 1456198)
example for color of usernames:
go to: usergroups -> usergroups manager -> choce a title -> Username HTML Markup, in text box1: <span style='color:red' font:'bold'> and text box2 </span>
and done
|
All that does is gives usergroups a colour. Doesn't let them choose their own color.
This is how you let them choose their own username color and font:
PHP Code:
<a class="bigusername" href="member.php?$session[sessionurl]u=$post[userid]">
<if condition="$post['field14'] != '' ">
<font style="font-family:$post[field28]; color:$post[field14];">$post[username]</font>
<else />
<if condition="$post['field27']"><span style="font-weight: bold; $post[field27]">$post[username]</span><else />
$post[musername]
</if></if></a>
What I would like to know is, if it is possible like on the default selective font & color on posts, to have that for the username font and color. Instead of just a box, use a drop down list of fonts and colors.
|