MyBB Community Forums

Full Version: Center logo and buttons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Look at http://www.hackforums.net

How do you center your logo and buttons like that? I want to do it from the default theme.

Thank you.
ACP >> Templates & Style >> Themes >> Default >> global.css >> Advanced Mode

Add:
.logo {
text-align: center;
}


Find:
.menu ul {
color: #000000;
font-weight: bold;
text-align: right;
padding: 4px;
}


Replace with:
.menu ul {
color: #000000;
font-weight: bold;
text-align: center;
padding: 4px;
}