Page 1 of 1

[BBCode] Font Face Dropdown

PostPosted: 27 Dec 2011, 23:59
by Sekuro
Font Face Dropdown

Adds a font face dropdown to your postbox

Credit: 4seven / bbcodebox3 / 2008

Instruction

make a bbcode in acp

bbcode usage
Code: Select all
[font={SIMPLETEXT}]{TEXT}[/font]


html replacement
Code: Select all
<span style="font-family: {SIMPLETEXT}">{TEXT}</span>


help line
Code: Select all
nothing


display on posting page
Code: Select all
no


open

language/en/posting.php

find

Code: Select all
$lang = array_merge($lang, array(


after add

Code: Select all
    'BBCODE_FT_HELP'              => 'Font Face: [font=Arial]Text[/font]',



open

styles/prosilver/template/posting_buttons.html

find

Code: Select all
      d: '{LA_BBCODE_D_HELP}',


after add

Code: Select all
      ft: '{LA_BBCODE_FT_HELP}',


find

Code: Select all
            <option value="200">{L_FONT_HUGE}</option>
            </select></span>


after add

Code: Select all
<span class="genmed nowrap"><select class="select_class" class="gensmall" name="addbbcode3" onchange="bbfontstyle('[font=' + this.form.addbbcode3.options[this.form.addbbcode3.selectedIndex].value + ']', '[/font]');this.form.addbbcode3.selectedIndex = 0;" onmouseover="helpline('ft');" onmouseout="helpline('tip');">
            <option selected="selected" value=""><!--{L_FONT_TYPE}-->Fonts</option>
            <option style="font-family: Arial" value="Arial">Arial</option>
            <option style="font-family: Arial Black" value="Arial Black">Arial Black</option>
         <option style="font-family: Century Gothic" value="Century Gothic">Century Gothic</option>
            <option style="font-family: Comic Sans MS" value="Comic Sans MS">Comic Sans MS</option>
            <option style="font-family: Georgia" value="Georgia">Georgia</option>
            <option style="font-family: Verdana" value="Verdana">Verdana</option>
            <option style="font-family: Courier New" value="Courier New">Courier New</option>
            <option style="font-family: Times New Roman" value="Times New Roman">Times New Roman</option>
            <option style="font-family: Trebuchet MS" value="Trebuchet MS">Trebuchet MS</option>
            <option style="font-family: Impact" value="Impact">Impact</option>
            </select></span>


clear all caches