How to change header

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
No Avatar
pro_hunter Offline
BBCoder II
BBCoder II
Posts: 17
Joined: 13 Aug 2011, 22:21
Local time: Saturday 20:29
Last active: -

How to change header

Post 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.
User avatar
Stoker Offline
Site Admin
Site Admin
Posts: 4,294
Joined: 12 May 2008, 21:26
Local time: Saturday 22:29
Last active: -
Favourite EXT: Forum Goal
Location: Denmark

How to change header

Post by Stoker »

I think you will find something usefull here: http://www.phpbb.com/search/?q=center+the+logo
~ The greatest achievement in life is to inspire ~
Regards Stoker
No Avatar
pro_hunter Offline
BBCoder II
BBCoder II
Posts: 17
Joined: 13 Aug 2011, 22:21
Local time: Saturday 20:29
Last active: -

How to change header

Post by pro_hunter »

:( why is there no overall_header in SE Square Left :(
User avatar
Stoker Offline
Site Admin
Site Admin
Posts: 4,294
Joined: 12 May 2008, 21:26
Local time: Saturday 22:29
Last active: -
Favourite EXT: Forum Goal
Location: Denmark

How to change header

Post 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 ) .
~ The greatest achievement in life is to inspire ~
Regards Stoker