Menu Manager/How to edit menu
I know HOW to get to editing my menu, but I have no clue how to add a link to it. For example, if I wanted a tab at the top of my website saying: Donate, leading to this link
http://hydro-pvp.buycraft.net/ it will do it.
Can anyone do this for me?
Can anyone tell me how to do it in css?
Website: hydro-pvp.com
This is nothing related to mybb. If you have an issue releating to mybb. Please make a new question.
Edit: I re-read the question, I crossed it out let me take a look.
Edit Edit:
ACP->Templates&Style->Templates->Your Theme->Header-> Header
Look for <li>
At bottom of the last li (right before </ul>)
Add:
<li><a href="http://hydro-pvp.buycraft.net/">Donate</a></li>
It worked but also didn't work, its not highlighted and you can't click on it
<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>
<div class="menu">
<ul>
<li><a href="{$mybb->settings['bburl']}">Home</a></li>
<li><a href="http://hydro-pvp.buycraft.net/">Donate</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
NEVER MIND! I COPY AND PASTED IT AND IT SCREWED UP, THANK YOU ;D
Make sure its:
<li><a href="http://hydro-pvp.buycraft.net/">Donate</a></li>
(If for some reason you can't copy it here:
<li><a href="http://hydro-pvp.buycraft.net/">Donate</a></li>
NOT
<a href="http: "="" hydro-pvp.buycraft.net=""></a href="http:>
Edit: Looks like the issue is solved.