MyBB Community Forums

Full Version: header logo centered
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want the header logo centered. how do i do that?
can anyone help?
<div class="logo" align="center">
(2009-10-29, 04:09 PM)RateU Wrote: [ -> ]
<div class="logo" align="center">

ok, i know that,
but what I meant, is where, which file i have to edit, where the <div class="logo"> is defined.
'm sorry i was'nt clear enough in my first post.
That is in header templates.
Actually, it's bad practice to put align="center" inside an element. The best way to do it is putting something like this in your CSS file:
.logo {
        margin: 0 auto;
}