New created Seditio BBcode;

What do you need to do?
Go to your functions.php => Search for line ;
Add before this line ;
NOTE ; .$L['Notes']. is already in your language file....
Save the file !
Go to your skin .css => Add in this one ;
Save your file !
Upload both files to your server and your done.
Have fun with this new bbcode!!!

What do you need to do?
Go to your functions.php => Search for line ;
Code:
'[quote]' => '<blockquote><img src="/system/img/bbcodes/quote.gif"><hr />',
'[/quote]' => '<hr /></blockquote>',
'[/quote]' => '<hr /></blockquote>',
Add before this line ;
PHP Code:
'[note]' => '<center><div class="note">'.$L['Notes'].'</div><div class="noteblock">',
'[/note]' => '</div>',
'[/note]' => '</div>',
NOTE ; .$L['Notes']. is already in your language file....
Save the file !
Go to your skin .css => Add in this one ;
CSS Code:
.note
{
background: #EFF0C2 url(complete path to your image file) no-repeat left;
border: 1px solid #999999;
border-bottom: 0px solid #333333;
color: #000000;
font-size: 14px;
font-weight: bold;
margin: 0 auto 0 auto;
padding: 3px;
width: 48%;
}
.noteblock
{
background: #DBE5E9;
border: 1px solid #999999;
color: #000000;
font-family: Arial, sans-serif;
font-size: 12px;
margin: 0 auto 0 auto;
padding: 3px;
width: 48%;
}
{
background: #EFF0C2 url(complete path to your image file) no-repeat left;
border: 1px solid #999999;
border-bottom: 0px solid #333333;
color: #000000;
font-size: 14px;
font-weight: bold;
margin: 0 auto 0 auto;
padding: 3px;
width: 48%;
}
.noteblock
{
background: #DBE5E9;
border: 1px solid #999999;
color: #000000;
font-family: Arial, sans-serif;
font-size: 12px;
margin: 0 auto 0 auto;
padding: 3px;
width: 48%;
}
Save your file !
Upload both files to your server and your done.
Have fun with this new bbcode!!!


























