Log in

View Full Version : change color ?


gsup084
06-29-2006, 06:53 AM
How do i change the color in the postbit. I want the "points" to be in bold and i want to be able to change the color.

My original code is.

<if condition="$show['reputation']">Points: $post[reputation]<div><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower]</if>$post[reputationdisplay]</div></if>

This an example pic below.

https://vborg.vbsupport.ru/external/2006/06/3.jpg

If someone can teach me how that would be greatly appreciated.


:)

Guest210212002
06-29-2006, 03:49 PM
Quick and dirty, try this:


<span style="color:orange;font-weight:bold;">Points: $post[reputation]</span>


Might work unless the color is predefined in the phrase, which it probably is, but it'll only take you about 5 seconds to try this out. ;)

gsup084
06-29-2006, 07:52 PM
thanks, it worked.