MyBB Community Forums

Full Version: How to add more space between title image and link bar
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Anyone know how to make more space between title image and the linkbar?
The wheel of the ATV is touching the bar.

[attachment=36146]

Sorry about all my questions  Confused
Go to ACP > Templates & Style > Templates > [Your template name] > Expand > Header Templates > header > Full Edit.

Look for the following code.

<ul class="menu top_links">

And change it to the following.

<br /><br /><ul class="menu top_links">

This should fix your problem on the mobile page nicely. Another solution would be to use CSS, which I strongly recommend.

Go to ACP > Templates & Style > [Your theme name] > Edit Theme > global.css > Edit Style > Edit Stylesheet: Advanced Mode.

Looking for the following code.

#logo ul.top_links {
	font-weight: bold;
	text-align: right;
	margin: -10px 5px 0 0;
}

Change it to the following code.

#logo ul.top_links {
	font-weight: bold;
	text-align: right;
	margin: 10px 5px 0 0;
}

If you want to make the navigation bar centered, you can do so by changing text-align to "center".
Perfect, that solved my problem.
Thanks a lot!!