XF 1.5 Is there a way to add H2 tag within a thread?

Donny

Active member
Wondering if there is a way to add a H2 tag within a thread. There appears to be a few H2-related threads within this forum, but they seem to be from 2011 etc.. Wondering if there's a way using some BB code add-on or something that can do it?
 
Use a custom bbcode: (ACP > Home > Custom BB Codes

Google ChromeScreenshot011.webp

Then style the size/font of the h2 to suit, in your extra.css - in which case you can give it a class in the custom bbcode

Code:
<h2 class="inpost">{text}</h2>

css:
Code:
.inpost
{font-size:20px;}
 
Last edited:
Top Bottom