Page 1 of 1

How to change header

Posted: 14 Aug 2011, 16:05
by pro_hunter
My minds gone blank for some reason and for the life of me i can't figure out how to change and center the logo on SE Square Left.

:( any info please.

How to change header

Posted: 14 Aug 2011, 16:14
by Stoker
I think you will find something usefull here: http://www.phpbb.com/search/?q=center+the+logo

How to change header

Posted: 14 Aug 2011, 16:20
by pro_hunter
:( why is there no overall_header in SE Square Left :(

How to change header

Posted: 14 Aug 2011, 16:38
by Stoker
It doesnt say anything about overall_header
Raimon wrote:open common.css

search:

Code: Select all

    #logo {
       float: left;
       width: auto;
       padding: 10px 13px 0 10px;
    }
replace with:

Code: Select all

    #logo {
       float: left;
       width: 100%;
       padding: 10px 13px 0 10px;
       text-align: center;
    }
search:

Code: Select all

    #site-description {
       float: left;
       width: 70%;
    }
replace with:

Code: Select all

    #site-description {
       float: left;
       width: 100%;
    }
after that refresh your theme ( acp -> styles -> themes -> refresh ) .