MyBB Community Forums

Full Version: Should i add H1 Tag in Showthread Template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In showthread i added Ht tag it looks like
<h1><title>{$thread['subject']}</title></h1>

Is this ok..?
tag <title> its for header i am not sure which template you are editing but in <body>....</body> its ok to use <h1>...</h1> in this case if you are not in head tag then remove <title> code
From:
<h1><title>{$thread['subject']}</title></h1>
To:
<h1>{$thread['subject']}</h1>
and this is finde Smile
ok please tell me how and where to add H1, H2 Tags please, I am using mybb defult theme and mybb version is 1610
(2014-06-20, 12:36 PM)Rock On Wrote: [ -> ]ok please tell me how and where to add H1, H2 Tags please, I am using mybb defult theme and mybb version is 1610

1610!? Well, just a suggest 1.6.13 is newest.

I'm pretty sure it's in showthream under templates.
please guide me at start how to add
(2014-06-20, 03:03 PM)Rock On Wrote: [ -> ]please guide me at start how to add

ACP->Templates & Styles->Templates->Theme->ShowThread->Showthread

Line 3: Change <title> too <h1>
<h1>{$thread['subject']}</h1>
after removing title it appear the thread title in header its look ugly.
and where to add h2 tag
(2014-06-21, 03:31 AM)Rock On Wrote: [ -> ]after removing title it appear the thread title in header its look ugly.
and where to add h2 tag

You need to be more descriptive of what your doing. All I am understanding is: "I want to add a h2 tag" where do you want to place it? Giving a screenshot or link helps greatly in solving your issue.