MyBB Community Forums

Full Version: Logo Help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How Can I Fix This?
[Image: 35d5b381d3aef125b591ad337278086d.png]
The Logo Is To Close To The Buttons.
What's your website's URL?
Add a <br />
Where? In The Template or Global.css
Go to Admin CP -> templates and styles -> styles -> Twist-SD and click edit and again click on global.css and change

.logo {
left: 0px;
position: relative;
top: 36px;
}
to

.logo {
left: 0px;
position: relative;
top: 0px;
{

And for dark grey line under header background reduce your logo size (there is like 42 pixel of unused space in height).
Adding <br /> is not a proper solution. You've to edit .logo class in global.css. Open global.css and find;
.logo {
	left: 0px;
	position: relative;
	top: 36px;
}
and Change it into, something like this;
.logo {
margin-left: 5px;
margin-top: 5px;
}