Log in

View Full Version : thread prefix coloring in vb 3.7


Terminatoronly
05-11-2008, 03:00 PM
Hello All,

i made few prefixes that i want to use in my forum , but i want to make them colored like one of them in green and bold stuff like that how can i do that .

please help

thanks alot :)

Lynne
05-11-2008, 03:16 PM
Go to your Thread Prefix Manager and edit your thread. Go to the line that says "Title (Rich Text)" and input the prefix in html. For instance, to make it green:
<span style="color: green;"><b>Your Prefix</b></span>
To make it green and bold:
<span style="color: green; font-weight: bold;"><b>Your Prefix</b></span>

Terminatoronly
05-12-2008, 03:05 AM
Thanks alot now its working fine :D

gamerfu
05-12-2008, 05:31 AM
Go to your Thread Prefix Manager and edit your thread. Go to the line that says "Title (Rich Text)" and input the prefix in html. For instance, to make it green:
<span style="color: #00FF00;"><b>Your Prefix</b></span>
To make it green and bold:
<span style="color: #00FF00; font-weight: bold;"><b>Your Prefix</b></span>

modified what Lynne said above with HEX code. you can get more varieties with hex numbers.

here is a useful link from Wikipedia:
http://en.wikipedia.org/wiki/Web_colors

pushedx
05-23-2008, 12:22 AM
Thanks a bunch to you both, this is exactly the information I was looking for.