For my hack:
https://vborg.vbsupport.ru/showthread.php?t=175282
I'm trying to get the font code to display within the quote box, but I can't get this to work. Here is my code within the bbcode_quote template:
Code:
<div style="margin:20px; margin-top:5px; <if condition="$show['iewidthfix']">width: 100%;</if>">
<div class="smallfont" style="margin-bottom:2px">$vbphrase[quote]:</div>
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%">
<tr>
<td class="alt2" style="border:1px inset">
<if condition="$show['username']">
<div>
<phrase 1="$username">$vbphrase[originally_posted_by_x]</phrase>
<if condition="$postid"><a href="showthread.php?$session[sessionurl]p=$postid#post$postid" rel="nofollow"><img class="inlineimg" src="$stylevar[imgdir_button]/viewpost.gif" border="0" alt="$vbphrase[view_post]" /></a></if>
</div>
<div>
<!--Custom Font-->
<if condition="$userinfo[field10] OR $userinfo['field14'] OR $userinfo['field11'] OR $userinfo['field15'] OR $userinfo['field17'] OR $userinfo['field16']">
<span style="font: $userinfo[field14]px $userinfo[field11]; color: $userinfo[field10]; font-weight: $userinfo[field15]; font-style: $userinfo[field16]; text-decoration: $userinfo[field17];">$message</strong></span>
</if>
<!--/Custom Font-->
</div>
<else />
$message
</if>
</td>
</tr>
</table>
</div>