MyBB Community Forums

Full Version: how to center these...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When I tried to access your site all I've seen is this:

[Image: upCrKn5.png]
(2013-03-10, 11:12 AM)effone Wrote: [ -> ]When I tried to access your site all I've seen is this:

[Image: GLSSG0x.png]

sorry, seforums.org
Its actually in center. If you want to align it to the left, add this property to your panel:

text-align: left;
(2013-03-10, 11:16 AM)effone Wrote: [ -> ]Its actually in center. If you want to align it to the left, add this property to your panel:

text-align: left;

Where do I add it mate? and how do I move the links at the top to the center? thanks.
In your global.css, find:

#panel {
color: #888;
}

make it:

#panel {
color: #888;
text-align: left;
}

For the menu:

find:

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

make it:

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