PDA

View Full Version : how to bold and change color. [request]


gsup084
06-29-2006, 03:41 PM
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.


:)

Iain M
06-29-2006, 08:16 PM
replace

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

with
<if condition="$show['reputation']"><strong style="color:#00FF00">Points: $post[reputation]</strong><div><if condition="$show['reppower']">$vbphrase[reppower]: $post[reppower]</if>$post[reputationdisplay]</div></if>

replace #00FF00 with the hex code of the color you want :)