MyBB Community Forums

Full Version: How do I make the home navigation a link?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I would like to make the home navigation a link on the homepage. By default, it isn't a link, it's just text.

Thank you.

I found out how to do it:

I just put '<a href="{$navbit['url']}"> </a>' in the nav_bit_active template in the span element so it turned out like this:

<span class="active"><a href="{$navbit['url']}">{$navbit['name']}</a></span>

I know it made ALL active elements to have a link around it, but that's the way I wanted it. If I just wanted the home navigation to be a link, I could just edit the global.php file with the a href code above.