MyBB Community Forums

Full Version: Multipule Questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Okay, after throughly reading the rules on posting this topic, here it is:

Board Details

Name: AviationParadise

Website: http://aviationparadise.site11.com/

Theme: Apart Series

-MyBB Version: 1.6.4
-PHP Version: 5.2.17
-SQL Version: MySQLi 5.1.57
___________________________________________________________

This Is My First Forum, and I'm still working on it.

1. I have downloaded the Page Manager Plug-In From: http://mods.mybb.com/view/page-manager . I have made a page, and I want to add it to the menu at the top. This is what I want to achive:
[Image: tkZbH.png]

And This Is What I have Now:
[Image: hKqr6.png]

So do I have to edit the theme itself? And if so, how? (I have little to no knowledge of any kind of coding)

____________________________________________________________

2. Is it possible to remove this at the bottom of the page? :
[Image: daYTy.png]

And if so, how?




Thank You Very Much In Advance!
For the second question:
Go to Templates & Styles -> Your Theme Templates -> Footer templates -> Footer

Find and remove (or comment out): <div id="debug"><debugstuff></div>

For the first question:
Go to Templates & Styles -> Your Theme Templates -> Header templates -> Header

Find:
<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>

And after that you should add other two <li> like this:

<li><a href="HERE YOUR PAGE URL"><img src="HERE THE IMAGE URL (optional)" alt="" title="" />HERE THE NAME OF THE LINK</a></li>
Thank You Soooo Much! 1+'d you!
You dont need to remove debug from footer, just disable the options of showing it in the ACP
Okay, I have inserted the code in the header as you suggested, but I see that there is a space between them, wheras the defult ones have no space:
[Image: wbq4n.png]

Is it possible to remove the space?