MyBB Community Forums

Full Version: Add a Bar to the bottom of your Index Page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add a bar like this to the bottom of my every page on my forum?

http://i.imgur.com/oh2yS.png

My site is www.imtiax.net

I need to add links like DMCA and stuff so I would like to have a bar to put it in.
You already have one. The "Div" is named a "bottommenu". You can find the code in the "footer" templates of your theme.

<div class="bottommenu">
				<div class="float_right">{$lang_select}</div>
				<div>
					<span class="smalltext"><a href="{$mybb->settings['contactlink']}">{$lang->bottomlinks_contactus}</a> | <a href="{$mybb->settings['homeurl']}">{$mybb->settings['homename']}</a> | <a href="#top">{$lang->bottomlinks_returntop}</a> | <a href="#content">{$lang->bottomlinks_returncontent}</a> | <a href="<archive_url>">{$lang->bottomlinks_litemode}</a> | <a href="{$mybb->settings['bburl']}/misc.php?action=syndication">{$lang->bottomlinks_syndication}</a> | <a href="{$mybb->settings['bburl']}/myawards.php">Awards</a></span>
				</div>
			</div>
Solved it by adding a new div to Footer template above the current div.

Now I have both. Thanks.