I would suggest this to be instead of the font tag >_>
PHP Code:
2) Open Postbit Templates -> postbit (or postbit_legacy)
FIND:
$post[message]
There may be DIV tags around it, leave those alone!
REPLACE WITH:
<if condition="$post[deffont] || $post[defsize] || $post[defcolor]">
<span style="font-family: $post[deffont]; font-size:$post[defsize]; color: $post[defcolor];">$post[message]</span>
<else />
$post[message]
</if>
also for you ffevo
PHP Code:
<select name="defcolor" id="sel_defcolor">
<option value="Black">Black</option>
<option value="Blue">Blue</option>
<option value="Red">Red</option>
<option value="Green">Green</option>
<option value="Orange">Orange</option>
<option value="Yellow">Yellow</option>
<option value="Pink">Pink</option>
</select>
replace that in the hack with
PHP Code:
<input type="text" size="20" name="defcolor" id="sel_defcolor" />