How to customize the styling of my content in the comment box?

On top of all the basic styling available in the comment box editor in your dashboard, you can go further and play with the source code in order to access more styling options.

html-support-comments

 

You can’t add HTML in a comment box, but you can add BBCode, which is a close relative to HTML.

Why BBCode and not HTML? For security reasons. Using BBCode prevents unwanted code injections that could potentially be harmful and disrupt the page’s layout.

 

The language is similar, you just need to use the syntax [h1] instead of <h1>.

html-support-source-code

 

This is the basic code we support:

Line Break [br]textsample[/br]
Bold [b]textsample[/b]
Italic [i]textsample[/i]
Header 1 [h1]textsample[/h1]
Bulleted List (Unordered List) [ul]textsample[/ul]
Ordered List [ol]textsample[/ol]
List Element [li]textsample[/li]
Embed image [img]https://www.bbcode.org/images/lubeck_small.jpg[/img]

Include Table like this one:

Name Age
John  65
Maria 49
Laura 57

[table]
[tr]
[th]Name[/th]
[th]Age[/th]
[/tr]
[tr]
[td]John[/td]
[td]65[/td]
[/tr]
[tr]
[td]Gitte[/td]
[td]40[/td]
[/tr]
[tr]
[td]Sussie[/td]
[td]19[/td]
[/tr]
[/table]

 

 

Try it free