MyBB Community Forums

Full Version: Center the header logo?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello there,

I'm just wondering if there's a way to center the header logo on skins? like they ALL end up left-aligned and I don't know how to fix it. Normally I'm good with CSS but the CSS for these themes can be a little confusing to navigate so... help with centering the header logo?

Thanks in advance! =)
text-align: center;

add that in your header theme
header theme... in the css section of the themes? like in EACH theme I have to do that?

like I checked the global CSS for the theme I'm using now and there IS no header...
global.css


does it logo then?
I always add to the div around the line of HTML for the logo.

In your header template, find:

<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

Change to:

<div class="logo" align="center"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

That should do it.

If you have more than one template set, though, you'll still have to make the change to all template sets, no way to do it on all at once.
yeah.. okay thanks! =)
(2009-01-17, 09:40 AM)MattR Wrote: [ -> ]I always add to the div around the line of HTML for the logo.

In your header template, find:

<div class="logo"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

Change to:

<div class="logo" align="center"><a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a></div>

That should do it.

If you have more than one template set, though, you'll still have to make the change to all template sets, no way to do it on all at once.

I too need to center my logo but am unable to find any reference to header or logo in global stylesheet
It's in your header template Smile
(2009-01-26, 03:56 PM)MattR Wrote: [ -> ]It's in your header template Smile

And where do I find the header template?
ACP > Templates & Style > Templates > **expand template set for theme** > Header Templates > header.
Pages: 1 2