MyBB Community Forums

Full Version: Making a new tab
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello there, i wanted to add a new tab on my forum, for example he clicks on the "Website" tab then it should get him to my website like www.website.com etc..
I mean this tab (Picture in attachments)

Is there any way to make a new tab?
that menu should be available in the header template of your theme... you can add more menu items by editing that template...

you can add something like this...
<li><a href="http://www.website.com" title="Website">Website</a></li>
(2015-09-26, 06:03 AM)mmadhankumar Wrote: [ -> ]that menu should be available in the header template of your theme... you can add more menu items by editing that template...

you can add something like this...
<li><a href="http://www.website.com" title="Website">Website</a></li>

Thank you a lot, it's working.