MyBB Community Forums

Full Version: Logo Question
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do you center the logo at the top of the forum?
Click to edit your theme in the admin cp and add this code to the Additional CSS box at the bottom of the page...

.logo
{
	text-align: center;
}

Alternatively, you could modify your themes header template by replacing this code...

<div class="logo">

...with this...

<div class="logo" align="center">

Either of the above two methods should centre the logo.
Thanks!
musicalmidget Wrote:Alternatively, you could modify your themes header template by replacing this code...

<div class="logo">

...with this...

<div class="logo" align="center">

Either of the above two methods should centre the logo.

I am from phpBB and could not find so for the header template...where is the file located. In phpBB it is forums/template/overall_header.tpl

Kindly help me
In MyBB, the templates are located in the admin cp.

ACP -> Templates -> Modify / Delete -> Default Templates* -> header

*Note that there may be additional template sets if you have any extra themes installed, in which case you should look for the header template in each set.
musicalmidget Wrote:In MyBB, the templates are located in the admin cp.

ACP -> Templates -> Modify / Delete -> Default Templates* -> header

*Note that there may be additional template sets if you have any extra themes installed, in which case you should look for the header template in each set.

Thanks.Big Grin