Log in

View Full Version : Glowing user TITLES? look inside


Caddyman
11-08-2006, 10:23 AM
ok i found a thread about coloring.glowing usernames, but what about usertitles? like

Caddyman <figured that out
Admin< how do i make this glow/decorate?


please is it a hack i need to add, or a css definition or? im pretty new to coding but i can figure it out, just need pointed in the right direction, the site is on VB 3.6.0


TIA to anyone who can help me a little :)

Caddyman
11-13-2006, 04:59 PM
anybody? please...

Guest210212002
11-13-2006, 06:36 PM
Quick, clean and easy:

In your style's main CSS, add a new tag called "glowtitle":


.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:


<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>

Change it to:


<if condition="$post['usertitle']"><div class="smallfont"><span class="glowtitle">$post[usertitle]</span></div></if>

The colored text is what's added.

Caddyman
11-17-2006, 03:52 PM
awesome thanks man, ill try that out!

ECFFEMT4460
01-23-2007, 09:41 PM
Quick, clean and easy:

In your style's main CSS, add a new tag called "glowtitle":


.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:


<if condition="$post['usertitle']"><div class="smallfont">$post[usertitle]</div></if>

Change it to:


<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