Quote:
Originally Posted by Diva
Hi. I am trying to get this to work for VB3.6.2 and can't seem to figure out what I did wrong. I copied the codes, changed the fields and the font is the only thing that works. Unfortunately I want this for the color. Here is what I am using:
Code:
<!-- message -->
<if condition="$post['field8'] != '' OR $post['field8'] != ''">
<font style="font-family:$post[field9]; color:$post[field9];">$post[message]</font>
<else />
<div id="post_message_$post[postid]">$post[message]</div>
</if>
<!-- / message -->
Any help would be very appreciated!
|
You have your field#'s wrong. Try this...
Code:
<!-- message -->
<if condition="$post['field9'] != '' OR $post['field8'] != ''">
<font style="font-family:$post[field8]; color:$post[field9];">$post[message]</font>
<else />
<div id="post_message_$post[postid]">$post[message]</div>
</if>
<!-- / message -->