MyBB Community Forums

Full Version: Netpen theme navigation links
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! I am currently using the netpen mybb theme on my website. I would like to add extra links and favicon icons onto my navigation but I am struggling.
To do this job you will need to host your own server privately and will not have access to my website or files. You will find all resources you should need below. I am asking that you teach me how to add the links myself so that I can change them at will.

Netpen Theme: https://community.mybb.com/mods.php?action=view&pid=727
My Website: http://www.quarantine-gaming.com

I am willing to pay I just need this done asap
for favicon go to Home » Template Sets » Your Theme Templates » Ungrouped » headerinclude  
and add
<link rel="icon" href="favicon.ico" type="image/gif">

for navigation links go to Home » Template Sets » Your Theme Templates » Edit Template: header
and search for "mainmenu" you will see a couple of  <li> codes, add this after the last <li> code
<li>
        <a data-target="#" href="#" data-toggle="dropdown" class="dropdown-toggle">
 <main><i class="fa fa-chevron-circle-down"></i> Extra</main>
 </a>
        <ul class="dropdown-menu">
            <li class="vmore"><a href="#"><i class="fa fa-eye-slash" style="margin-right: 5px;"></i>Extra Link #1</a></li>
            <li class="vmore"><a href="#"><i class="fa fa-eye-slash" style="margin-right: 5px;"></i>Extra Link #2</a></li>
            <li class="vmore"><a href="#"><i class="fa fa-eye-slash" style="margin-right: 5px;"></i>Extra Link #3</a></li>

        </ul>   
    </li>