How add new bbcode rule?
I need [align=left ] [/align] bbcode rule on my gallery... how can I do this?
Thanx)
Edit the bb_decode() function in include/functions.inc.php.
well... I edited it and now align tags don't show in the text. But they are still don't work(((
is this code right or not?
--------------
// [align=left] and [/align] for align text.
$text = str_replace("[align=left]", '<align=left>', $text);
$text = str_replace("[/align]", '</align>', $text);
--------------
No. You have to use HTML that actually exists, not something you made up yourself.
There's no HTML tag <align>. Use <div align="left"> or <div style="text-align:left">. As Nibbler suggested: you can't make up HTML tags.