MyBB Community Forums

Full Version: Tabs at the top of forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I am using the Novus Dusk template on my website. I recently edited the .htacess file so that when I open my site it takes me to the portal but unfortunately I cannot see a tab which says "Forum" or something like that. I have to go there by clicking the logo. I also cannot see the "Home" or some button like that when I reach the forums. Any help?

EDIT: Looked through some threads and they modified code witht he header. Although I cannot find what they mentioned to find. My header template is -

{$welcomeblock}

{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}

	<div id="container">
		<a name="top" id="top"></a>
		<div id="header">
			<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
			<hr class="hidden" />
		</div>
	        <navigation>
		<br class="clear" />
		<div id="content">
		<br />
you have to add the links in both header_welcomeblock_member & header_welcomeblock_guest templates

find code like below
<div class="menu">
		<ul>
you can add below code after the above code (in a new line)
<li><a href="{$mybb->settings['bburl']}/portal.php">Home</a></li>
<li><a href="{$mybb->settings['bburl']}/index.php">Forum</a></li>