MyBB Community Forums

Full Version: How can I center my logo & main links?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I can't see just menu at all in global.cs
Then just add this to your global.css

.menu
{
margin-left:auto;
margin-right:auto;
}

Which theme are you using? I'm curious!!!
Excite
ultimategamingforums.co.uk

No that didn't work either
Go to your header template. Replace this:

<div class="menu">
				<ul>
                                        <li><a href="http://forumsource.org/"><img class="icons" src="images/ex/house.png" alt="house" />Home</a></li>
                                        <li><a href="http://forumsource.org/donate.php"><img class="icons" src="images/ex/money.png" alt="money" />Upgrade</a></li>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img class="icons" src="images/ex/search.png" alt="search" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img class="icons" src="images/ex/members.png" alt="members" />Members</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img class="icons" src="images/ex/help.png" alt="help" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>

with this:

<div class="menu">
<a href="http://forumsource.org/"><img class="icons" src="images/ex/house.png" alt="house" />Home</a>
<a href="http://forumsource.org/donate.php"><img class="icons" src="images/ex/money.png" alt="money" />Upgrade</a>
<a href="{$mybb->settings['bburl']}/search.php"><img class="icons" src="images/ex/search.png" alt="search" />{$lang->toplinks_search}</a>
<a href="{$mybb->settings['bburl']}/memberlist.php"><img class="icons" src="images/ex/members.png" alt="members" />Members</a>
<a href="{$mybb->settings['bburl']}/misc.php?action=help"><img class="icons" src="images/ex/help.png" alt="help" />{$lang->toplinks_help}</a>
</div>

I've tested in my localhost. Its OK. But you'll lose the background image change on hover.
This theme has converted a list to a line Sad
Nope its olive up now, thanks.

[Image: ce09a11fca555cfff41bdd56ff5522b0]
[Image: 59443d06.png]
Pages: 1 2