MyBB Community Forums

Full Version: How to center header links?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
http://community.mybb.com/thread-73160-p...#pid533538

I tried that but it stays the same...
body {
background: #d5d5d5;
color: #000;
text-align: center;
line-height: 1.4;

@ global CSS
the above change results in centering of all the text at many sections !!

Quote:In the global.css find .menu and change text-align: right; to text-align: center;

find .menu and under it
change text-align: right; to text-align: center;
I found this:
_
.menu ul {

color: #000000;

font-weight: bold;

text-align: <center>;

padding: 4px;
_
There is no normal .menu
change above to :
.menu ul {
color: #000000;
font-weight: bold;
text-align: center;
padding: 4px;

Has no effect. Also tried that before.
it doesn't change immediately - have you hard refreshed your browser (CTRL + F5) .. your site URL please..
Your CSS is a bit messy, you have repeated code which is overwriting the other code that you edited. Replace global.css with this: (make sure to copy it from RAW paste data)

http://pastebin.com/95tUAvCb
^Awesome man. Just awesome. Thanks!!!