MyBB Community Forums

Full Version: [HELP] How to center MyBB logo?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is my website: http://www.adrenalinescape.com/forums/index.php

How would i go about centering my logo?

Thanks in advance,

- Brandon
<div style="text-align: center;"><img
 style="width: 547px; height: 129px;" alt=""
 src="your logo link here"></div>
I like your theme can u give me that..
PM ME
Dont Foget to repute me
(2013-01-31, 05:08 AM)Gooogle Wrote: [ -> ]
<div style="text-align: center;"><img
 style="width: 547px; height: 129px;" alt=""
 src="your logo link here"></div>
I like your theme can u give me that..
PM ME
Dont Foget to repute me


Where would i add this code?
In the header template:

ACP >> Templates and Style >> Templates >> Your Theme >> Header Templates >> header

Find the div with a class of logo, and you should be able to just replace it with the above code.
(2013-01-31, 06:01 AM)Josh H. Wrote: [ -> ]In the header template:

ACP >> Templates and Style >> Templates >> Your Theme >> Header Templates >> header

Find the div with a class of logo, and you should be able to just replace it with the above code.

I can't seem to find the right place to navigate to. This is what i see:

[Image: 5aSvuFr.png]
Choose the one that is "Used by: Apart 1"...

Your templates are a mess Wink... You should be able to delete the ones not used by any themes.
(2013-01-31, 06:15 AM)Josh H. Wrote: [ -> ]Choose the one that is "Used by: Apart 1"...

Your templates are a mess Wink... You should be able to delete the ones not used by any themes.


Yeah i just deleted them, haha. Where in this code should i add the code provided? Sorry for the spoon feeding, i just really am new to this!

This is what my header template looks like:

Quote:<div id="container">
<a name="top" id="top"></a>
<div id="header">
<div id="logo">
<div class="wrapper">
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a>
</div>
</div>
<div id="panel">
<div class="upper"><!-- This div(class="upper") is closed in the header_welcomeblock_member and header_welcomeblock_guest templates -->
<div class="wrapper">
<ul class="menu top_links">
<li><a href="{$mybb->settings['bburl']}/search.php" class="search">{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>
</ul>
{$welcomeblock}
</div>
</div>
<div id="content">
<div class="wrapper">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
<navigation>
<br />
Here, I've added it for you:

(2013-01-31, 06:17 AM)str1de Wrote: [ -> ]<div id="container">
<a name="top" id="top"></a>
<div id="header">
<div id="logo">
<div class="wrapper" style="text-align:center;margin-left:auto;margin-right:auto;">
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a> <!--Added it here-->
</div>
</div>
<div id="panel">
<div class="upper"><!-- This div(class="upper") is closed in the header_welcomeblock_member and header_welcomeblock_guest templates -->
<div class="wrapper">
<ul class="menu top_links">
<li><a href="{$mybb->settings['bburl']}/search.php" class="search">{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>
</ul>
{$welcomeblock}
</div>
</div>
<div id="content">
<div class="wrapper">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
<navigation>
<br />
(2013-01-31, 06:28 AM)Seabody Wrote: [ -> ]Here, I've added it for you:

(2013-01-31, 06:17 AM)str1de Wrote: [ -> ]<div id="container">
<a name="top" id="top"></a>
<div id="header">
<div id="logo">
<div class="wrapper" style="text-align:center;margin-left:auto;margin-right:auto;">
<a href="{$mybb->settings['bburl']}/index.php"><img src="{$theme['logo']}" alt="{$mybb->settings['bbname']}" title="{$mybb->settings['bbname']}" /></a> <!--Added it here-->
</div>
</div>
<div id="panel">
<div class="upper"><!-- This div(class="upper") is closed in the header_welcomeblock_member and header_welcomeblock_guest templates -->
<div class="wrapper">
<ul class="menu top_links">
<li><a href="{$mybb->settings['bburl']}/search.php" class="search">{$lang->toplinks_search}</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php" class="memberlist">{$lang->toplinks_memberlist}</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" class="calendar">{$lang->toplinks_calendar}</a></li>
</ul>
{$welcomeblock}
</div>
</div>
<div id="content">
<div class="wrapper">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
{$pending_joinrequests}
<navigation>
<br />

THANKS A TON!