Quote:
Originally Posted by Chris-777
Quick, clean and easy:
In your style's main CSS, add a new tag called "glowtitle":
Code:
.glowtitle
{
color:orange;
font-weight: bold;
font-size: 8px;
Text-Decoration: Underline;
}
Change the CSS to what you want it to look like.
Then, in your postbit or postbit_legacy (depending on which you use). Look for:
Code:
<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>
Change it to:
Code:
<if condition="$post['usertitle']"><div class="smallfont"><span class="glowtitle">$post[usertitle]</span></div></if>
The colored text is what's added.
|
I still dont understand where to add the new Code