• This is a demo site for the purposes of showing and testing VaultWiki in a XenForo environment. If you have real questions or need support, please visit the real VaultWiki web site here: https://www.vaultwiki.org

Possible for HTML to not parse to BBCode?

delicateglow

New Member
Well, I have this minor issue.
I'm trying to make a background color of one table cell in a table
However, when I do that, save the post and look at the page, it didn't take effect. If I go back to edit it, I'll see that the HTML for the table converted to BBCode, which is why the bgcolor didn't take effect.
I'm wondering if this is a vaultwiki issue or vbulletin and if there's any way around it.
 
vBulletin's WYSIWYG editor will convert a table tag to BB-Code because a TABLE BB-Code exists. If you are using the vBulletin TABLE BB-Code, you will need to look at their docs, tutorials, or community to find out how to apply a background color.

In VaultWiki's TABLE tag, it's really easy, but the syntax is completely different from vB's:
Code:
[table] style="border: 1px solid #000; width: 62%"
|-
| style="background-color: red" | background is red
| background is not red
[/table]
Creates:
[table] style="border: 1px solid #000; width: 62%"
|-
| style="background-color: red" | background is red
| background is not red
[/table]
 
Last edited:
Back
Top