MyBB Community Forums
How to add more space between title image and link bar - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: 1.8 Support (https://community.mybb.com/forum-175.html)
+--- Forum: General Support (https://community.mybb.com/forum-176.html)
+--- Thread: How to add more space between title image and link bar (/thread-192130.html)



How to add more space between title image and link bar - jangermann - 2016-04-25

Anyone know how to make more space between title image and the linkbar?
The wheel of the ATV is touching the bar.

   

Sorry about all my questions  Confused


RE: How to add more space between title image and link bar - inTech - 2016-04-25

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".


RE: How to add more space between title image and link bar - jangermann - 2016-04-26

Perfect, that solved my problem.
Thanks a lot!!