Yes, that would be handy!
Searching templates for the code
PHP Code:
<div id="post_message_$post[postid]">$post[message]</div>
shows two templates that contain this code:
postbit and postbit_legacy
postbit works.
I only want members to be able to set font type, color and italic. The field number for this are:
font type: 23
color: 24
italic : 25
I have color and italic working, but not font type.
My current code is:
PHP Code:
<!--Custom Font-->
<if condition="$post['field23'] OR $post['field24'] OR $post['field25']">
<span style="font: $post[field23]; color: $post[field24];font-style: $post[field25];">$post[message]</strong></span>
<else />
$post[message]
</if>
<!--/Custom Font-->
Please advise.
Does higher / lower case matter when defining fonts?