MyBB Community Forums

Full Version: Changing the position of the logo.png?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, I was wondering where to start for changing the position of the logo?
I've looked at other threads and can't find it.
You mean to align it left or right? That you can do by adding a style rule of .logo img to your css and float it left or right

If you want to move it a LOT then look in the header template of your theme.
(2012-11-30, 02:27 AM)Leefish Wrote: [ -> ]You mean to align it left or right? That you can do by adding a style rule of .logo img to your css and float it left or right

If you want to move it a LOT then look in the header template of your theme.
I want to align it center.
[Image: iGzAs.png]
^ that is what it looks like atm.
ok, try this: Add the below to global css

.logo{
margin:auto auto;
text-align:center;
}