PDA

View Full Version : bbcode question


cravendale
08-17-2013, 01:37 PM
Hi,

On my forum I only see limited BBCode options.
If I look here....
https://vborg.vbsupport.ru/misc.php?do=bbcode
I see options such as...
[floatright] - Floats Text Right
[rft] - Floats Text Right
[lft] - Floats Text Left
[imgrft] - Replaces [img] tag to float right] [img] tag will still work as usual
[imglft] - Replaces [img] tag to float left] [img] tag will still work as usual

But I can't see them listed on the list on my forum nor can I use them.

Anyone got any ideas?
vB Version is 4.0.x

Thanks

kh99
08-17-2013, 01:43 PM
Those are custom bbcodes which you can add to your site using the Custom BB Codes menu in the admincp. You just have to figure out the replacement html for the code you want, which you can probably do by looking at the html source of the page you linked above. For example, for floatright the replacement would be:
<span style="float:right">{param}</span>


which I got by viewing the source and replacing the text with {param}.

You might also be able to find some replacement codes by searching in the mod forums.

cravendale
08-17-2013, 05:36 PM
Thank you. that has helped allot :D