Quote:
Originally Posted by kh99
You can't include html in profile field options, the special characters gets escaped and you see the result. Why don't you just make the choices the color name then in postbit something like:
Code:
<span class="ghosthax-{vb:raw post.field21}">Status:</span> {vb:raw post.onlinestatus}</div>
(of course you could also do this:
Code:
<span class="ghosthax" style="color:{vb:raw post.field21}">Status:</span> {vb:raw post.onlinestatus}</div>
then you wouldn't need the classes).
|
Even better would this work?
<span class="ghosthax-{vb:raw post.field21}">Status:</span>
Then change the options in the Profile field to the colour name, like blue.
Is that right?