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
Lucky Offline
BBCoder II
Posts: 8 Joined: 26 May 2010, 21:31
Local time: Saturday 22:39Last active: -
Favourite BBCode: Vozme bbcode MOD
Favourite EXT: Seo Premod
Location: Italy
Post
by Lucky » 15 Jul 2012, 18:21
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:
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:
Demo link
juango Offline
BBCoder II
Posts: 34 Joined: 30 May 2011, 18:44
Local time: Saturday 15:39Last active: -
Post
by juango » 01 Aug 2012, 23:59
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!
Lucky Offline
BBCoder II
Posts: 8 Joined: 26 May 2010, 21:31
Local time: Saturday 22:39Last active: -
Favourite BBCode: Vozme bbcode MOD
Favourite EXT: Seo Premod
Location: Italy
Post
by Lucky » 02 Aug 2012, 19:17
Thank for your suggestion juango
juango Offline
BBCoder II
Posts: 34 Joined: 30 May 2011, 18:44
Local time: Saturday 15:39Last active: -
Post
by juango » 03 Aug 2012, 00:05
not a problem lucky! your welcome!