Quote:
Originally Posted by elviejoepu
I have a problem,
my field6: Color de letras (color)
My field7: Tipo de fuente (font)
<if condition="$post['field6'] != '' OR $post['field7'] != ''">
<font style="font-family:$post[field7]; color:$post[field6];">$post[message]</font>
<else />
$post[message]
</if></div>
is not working... what im doing wrong?
|
Try This...
Code:
<if condition="$post['field6'] != '' OR $post['field7'] != ''">
<font style="font-family:$post[field6]; color:$post[field7];">$post[message]</font>
<else />
$post[message]
</if></div>