MyBB Community Forums

Full Version: Menu Bar - Solved
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I'm trying to use a menu bar from http://cssmenumaker.com/free-css-menus
and add it to the header of my myBB forum.

The instructions say:

Upload the menu_source folder to the root directory of your website. This is usually where your index.html or index.php file is.

Copy and paste the code below somewhere between the <head></head> tags.

<link href="/menu_source/styles.css" rel="stylesheet" type="text/css">

Copy and paste the HTML below where ever you want your menu to show up.

<div id='cssmenu'>
<ul>
   <li class='active'><a href='index.html'><span>Home</span></a></li>
   <li><a href='http://nubs.helzbird.net/forum/forumdisplay.php?fid=2'><span>News</span></a></li>
   <li><a href='#'><span>Donate</span></a></li>
   <li class='last'><a href='http://www.helzbird.net/'><span>Minecraft</span></a></li>
</ul>
</div>

I placed the second code at the top off the header template for my theme and uploaded menu_source to the /forum/ part of the site where myBB is installed. I can't figure out where to put the link code for the style sheet though, hence the menu currently just displays as a text list.

Help would be appreciated Smile

Solved, just needed the code to point to the correct directory of the style sheet.