MyBB Community Forums

Full Version: how can I put the logo header on centre
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to know how I can put the logo on the centu Forum HuhHuh[/align]
Go to: ACP > Themes > Your theme > global.css > edit in advanced mode > and find;
.logo {
margin: 0;
}

and change into;
.logo {
margin: 0;
text-align: center;
}
#logo_image {
	position: absolute;
	top: 30px;
	left: 0px;
	margin: 0px;
}

#logo_banner {
 position: absolute; top: 60px; right: 10px; margin: 0px;
}

i dont have

.logo {
margin: 0;
}
add in both, no worries if you add extra code in the css templates.

replace your codes with this

#logo_image {
    position: absolute;
    margin: 0px;
text-align: center;
}

#logo_banner {
text-align: center;
margin: 0px;
position: absolute; top: 60px; right: 10px; margin: 0px;
}