MyBB Community Forums

Full Version: How do you center your forum logo?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.

Hi,

Is there a way to center the forum logo through the ACP? If so, how?

Thanks
Yes but it depends on the theme. With some themes you could simply edit the global.css and others the header templates.

Could you copy the header template of the theme for me(us)?
Find in your header template <div class="logo"> and change to <div class="logo" align="center">
(2011-03-28, 11:35 PM)WbDev Wrote: [ -> ]Find in your header template <div class="logo"> and change to <div class="logo" align="center">

where exactly do I find the header template? I can't seem to find it. I forgot where it is.

Thanks
admincp->templates&style->templates->Header Templates->header
A forum search for "center" pulls up dozens of threads. Just a tip for future support questions.
As Labroca said,btw do these steps,using CSS would be much better here:

1. ACP>Themes & Templates>Themes>YOUR THEME>global.css
2. In it select second tab,i.e. Edit stylesheet: Advance Mode.
3. In it add somewhere or if you are being confused scroll down till last,after it add code:

.logo {
 text-align: center;
}

And this CSS attribute would make your logo center align.