[BBCode] New OT BBCode

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
User avatar
Lucky Offline
BBCoder II
BBCoder II
Posts: 8
Joined: 26 May 2010, 21:31
Local time: Saturday 22:39
Last active: -
Favourite BBCode: Vozme bbcode MOD
Favourite EXT: Seo Premod
Location: Italy

[BBCode] New OT BBCode

Post by Lucky »

Title: New OT BBCode
Autor: Lucky
Description: A new view for write in "Off-Topic" in the post
Requirements: phpBB | PortalXl 5.0 Premod & Plain


Installing BBCode in ACP / Contents / BBCode / Add New BBCode

BBCode usage:

Code: Select all

[ot]{INTTEXT}[/ot]
HTML replacement:

Code: Select all

<table style='margin:0;width:450px;min-height:100px;border:1px dashed #740000;'>
      <tr>
        <td align='middle' bgcolor='#3333FF' valign='center' width='1%'><br />
           <FONT color='#ffffff' size='+7'><b>OT </b></font><br /></td>
        <td valign='top' cellpadding="5" style='background:#FFFFFF' ><div id="{INTTEXT}">{INTTEXT}
    </div></td>
      </tr>
    </table>
Help line:

Code: Select all

[ot]your text[/ot]

Demo link
No Avatar
juango Offline
BBCoder II
BBCoder II
Posts: 34
Joined: 30 May 2011, 18:44
Local time: Saturday 15:39
Last active: -

[BBCode] New OT BBCode

Post by juango »

good one lucky, but if you like your bbcodes xtml valid like me you can try this html replacement:

Code: Select all

  <table style="margin:0;width:450px;min-height:100px;border:1px dashed #740000;">
    <tr>
      <td style="background-color:#3333FF;vertical-align:middle;text-align:center;width:1%;"><br />
      <strong style="color:#FFFFFF;font-size:48px;">OT</strong></td>

      <td style="vertical-align: top;background:#FFFFFF">
        <div id="{INTTEXT}">
          {INTTEXT}
        </div>
      </td>
    </tr>
  </table>
the posted one had too many errors and many deprecated tags!
User avatar
Lucky Offline
BBCoder II
BBCoder II
Posts: 8
Joined: 26 May 2010, 21:31
Local time: Saturday 22:39
Last active: -
Favourite BBCode: Vozme bbcode MOD
Favourite EXT: Seo Premod
Location: Italy

[BBCode] New OT BBCode

Post by Lucky »

Thank for your suggestion juango
No Avatar
juango Offline
BBCoder II
BBCoder II
Posts: 34
Joined: 30 May 2011, 18:44
Local time: Saturday 15:39
Last active: -

[BBCode] New OT BBCode

Post by juango »

not a problem lucky! your welcome!