MyBB Community Forums

Full Version: Navigation Links Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was wondering how to add custom links to the navigation bar that includes a picture in front of the, so does anyone know how to do this?
Yeah, it's quite simple really I'll explain below.

From the admin panel, go to the following place. Templates & Style -> Templates -> Your Template -> Header Templates -> Header and look for <div class="menu"> and add the following code to it, but of course change it to your own image path and content page.


<li><a HREF="index.php"><img src="path/to/picture.png" />Test </a></li>

Change index.php to whatever page or URl you want it to be directed to, and change path/to/picture.png to the correct path or URL of the image you want to add.
Okay thanks for your help really appreciate it!
You're welcome, glad I could help.