how to make ......r

Extreme111

New Member
Duz anyone know how i can make ranks soo its the same like in the pic below have a look please i need help !!

Thanks


Like this:
kl.bmp
 
Just make a new user rank and set it for a certain user groups only (like moderator). Set the text to "Rank: {rank name here}". If you're referring to the box around the rank let me know and I can help with that also.
 
AdminCP --> Styles & Templates --> Style Manager --> Edit Templates --> Postbit Templates --> postbit_legacy

FIND:
Code:
<div class="smallfont">$post[rank]</div>

REPLACE WITH:
Code:
<div class="leftbox">$post[rank]</div>


Lemme know if it doesn't work and I'll fix it.
 
Post your postbit_legacy template so that I can take a look at what class atribute your div tags are using.
 
actually that depends of css style here is something that is simple

Code:
<if condition="$post['field2']"><div class="smallfont" style="background-color: #261d0c; padding: 4px; border-bottom: 2px solid #0e0b04;"><strong>$vbphrase[location_perm]:</strong> $post[field2]</div>

<div style="padding-top: 4px;"></div>
			</if>

here you just put your field numbers and what ever you want to show on postbit you can also change the colors to match your site.

here is another example.

Code:
<div class="smallfont" style="background-color: #261d0c; padding: 4px; border-bottom: 2px solid #0e0b04;"><strong>$vbphrase[posts]:</strong> $post[posts]</div>
			<div style="padding-top: 4px;"></div>

I am sure you get the idea :).

Hope this helps,

~Brian
 
Brian33 said:
actually that depends of css style here is something that is simple

Code:
<if condition="$post['field2']"><div class="smallfont" style="background-color: #261d0c; padding: 4px; border-bottom: 2px solid #0e0b04;"><strong>$vbphrase[location_perm]:</strong> $post[field2]</div>

<div style="padding-top: 4px;"></div>
			</if>

here you just put your field numbers and what ever you want to show on postbit you can also change the colors to match your site.

here is another example.

Code:
<div class="smallfont" style="background-color: #261d0c; padding: 4px; border-bottom: 2px solid #0e0b04;"><strong>$vbphrase[posts]:</strong> $post[posts]</div>
			<div style="padding-top: 4px;"></div>

I am sure you get the idea :).

Hope this helps,

~Brian

If he's already got a css atribute to do exactly that then it would be a waste to add those extra css values wouldn't it
 
i agree was only posting a easy code incase he didnt have a css att. Was to lazy explaining how to make a css att. and all that :).
 
Zamurick said:
AdminCP --> Styles & Templates --> Style Manager --> Edit Templates --> Postbit Templates --> postbit_legacy

FIND:
Code:
<div class="smallfont">$post[rank]</div>

REPLACE WITH:
Code:
<div class="leftbox">$post[rank]</div>


Lemme know if it doesn't work and I'll fix it.

na did not work
 
Back
Top