View Full Version : User Title Font Change
1mephime1
05-30-2008, 12:18 PM
How do I change the user title fonts. Also when the font is changed, how do I bold?
Lynne
05-30-2008, 03:03 PM
Look in your postbit (or postbit_legacy) template for this line to change:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
Just put your own CSS inline in the div tag.
1mephime1
05-30-2008, 03:05 PM
Thank You very much!:)
legionofangels
06-03-2008, 09:53 PM
Look in your postbit (or postbit_legacy) template for this line to change:
Just put your own CSS inline in the div tag.
So basically what you are saying is remove the coding from within the div's and put whatever CSS definitions I want and I can change the way the user titles will look?
Lynne
06-04-2008, 02:16 AM
So basically what you are saying is remove the coding from within the div's and put whatever CSS definitions I want and I can change the way the user titles will look?
You don't have to remove the "class=smallfont" part if you don't want. You can just add other css inline. ie.
<div class="smallfont" style="font-family: times">$post[usertitle]</div>
legionofangels
06-04-2008, 02:53 AM
But I could change that smallfont to any other type of font listing within the style set.
So like change it to
Body Font if I want.
Correct?
(( because for what we want to do, I can't use small font's set up ))
Lynne
06-04-2008, 02:12 PM
smallfont is a css class defined in standard vbulletin css. You don't need to keep it there if you don't want. You could just have:
<div style="font-family: times">$post[usertitle]</div>
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.