MyBB Community Forums

Full Version: Move links in Header?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I want to move these links in the header so they all line up? Is there a way to do it?

Thanks.

Have a look at screen shot.
What's your header template code, as well as your .header in your global css?
Please make sure there is no "<br />" tag in the header.
Actually the problem is in the tera donation link on header. Try this;
Go to: ACP > Templates > Global Templates > and copy all the code of "tera_donate_link" (or name something like that) and paste it in "header" template of your theme.

A user has reported a similar issue via PM and I had fixed it using his ACP login details.
(2011-05-26, 07:54 PM)Yaldaram Wrote: [ -> ]Actually the problem is in the tera donation link on header. Try this;
Go to: ACP > Templates > Global Templates > and copy all the code of "tera_donate_link" (or name something like that) and paste it in "header" template of your theme.

A user has reported a similar issue via PM and I had fixed it using his ACP login details.

Ok thanks that fixed it.

Is there a way to center all the links?
You need to fix some missing code in the the header template, find:
<div class="menu">

Add after:
<ul>

Then in global.css change the text-alignment for .menu ul
OK I changed the header template, but what do I put in the global.css?

Thanks for the help...
.menu ul {
text-alignment: center
}
Hi
This is what I have in that menu ul:
list-style: none;
margin: auto auto;
.menu ul {
text-alignment: center
} 

There is two .menu ul aslo?
The other is this:

.menu ul {
	width: 410px;
list-style: none;
margin: auto auto;
.menu ul {
	text-alignment: center;
If your menu ul { css style is some thing like this;
.menu ul {
	color: #000000;
	font-weight: bold;
	text-align: right;
	padding: 4px;
}
Then change text-align property to center, like this;
.menu ul {
	color: #000000;
	font-weight: bold;
	text-align: center;
	padding: 4px;
}
Pages: 1 2