2017-Nov-5-12:15 am
(This post was last modified: 2017-Nov-5-12:18 am by CanadaCommunity.)
mybb adding H1 tags
Template showthread
Find this:
Replace with:
Template forumdisplay_threadlist
Find this:
Replace with:
Template announcement
Find this:
Replace with:
add this to your global.css:
Template showthread
Find this:
<strong>{$thread['threadprefix']}{$thread['subject']}</strong>
Replace with:
<h1>{$thread['threadprefix']}{$thread['subject']}</h1>
Template forumdisplay_threadlist
Find this:
<strong>{$foruminfo['name']}</strong>
Replace with:
<h1>{$foruminfo['name']}</h1>
Template announcement
Find this:
<strong>{$lang->forum_announcement}</strong>
Replace with:
<h1>{$lang->forum_announcement}</h1>
add this to your global.css:
h1 {
font-size: 13px;
margin: 0;
}