Replace PHPBB logo - Black
Replace PHPBB logo
I know there are threads on this but they are all old. I want to replace the entire top forum text and phpBB logo and want to replace it with an image header. I have tried everything listed here and I cannot get even just the logo to change.
-
- Registered User
- Posts: 5
- Joined: Sun Sep 25, 2016 8:06 pm
Re: Replace PHPBB logo
I don't get why it won't change either. I replaced the default image several times! I have no idea where it is getting it from...
-
- Registered User
- Posts: 30
- Joined: Sun May 21, 2017 10:21 pm
Re: Replace PHPBB logo
30 secondes to find it by searching: https://www.phpbb.com/customise/db/styl ... 46#p422646.
Communauté EzCom
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.

-
- Registered User
- Posts: 1106
- Joined: Mon Oct 04, 2004 11:14 pm
- Location: France
- Name: Raphaël M.
Re: Replace PHPBB logo
This is for 3.1. For 3.2 is other method.Galixte de EzCom wrote:30 secondes to find it by searching: https://www.phpbb.com/customise/db/styl ... 46#p422646.
-
- Style Customisations
- Posts: 10532
- Joined: Tue Aug 11, 2009 12:45 am
- Location: Brazil
- Name: Marcus Vinicius
Re: Replace PHPBB logo
Yes:
But the logo doesn’t cover all part from header, 60/70% maybe.
Vinny an idea?
- OPEN:
./styles/black/theme/colours.css
files - Find:
Code: Select all
.site_logo { background-image: url("./images/logo.png"); }
- REPLACE WITH:
Code: Select all
.site_logo { background-image: url("./images/your_logo.png"); }
- OR WITH THIS (if your want to put your logo in the main
./images/
folder from phpBB:Code: Select all
.site_logo { background-image: url("../../../images/logos/your_logo.png"); }
Code: Select all
.site_logo {
background-image: url("../../../images/logos/my_logo.png");
background-size: contain;
background-repeat: no-repeat;
display: block;
max-width: 100%;
width: 676px;
height: 84px;
}
Vinny an idea?
Last edited by Galixte de EzCom on Sun Aug 13, 2017 9:01 am
Communauté EzCom
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.

-
- Registered User
- Posts: 1106
- Joined: Mon Oct 04, 2004 11:14 pm
- Location: France
- Name: Raphaël M.
Re: Replace PHPBB logo
That's because
.site-description
is width: 65%;
of the header.-
- Style Customisations
- Posts: 10532
- Joined: Tue Aug 11, 2009 12:45 am
- Location: Brazil
- Name: Marcus Vinicius
Re: Replace PHPBB logo
Thanks, with “Site logo” extension it’s perfect. 

Communauté EzCom
« Traductions d’extensions & styles pour phpBB 3.2.x & 3.3.x ».
Lists of all extensions identified for phpBB 3.1.x & 3.2.x.
Lists of all styles identified for phpBB 3.1.x & 3.2.x.
Tu as un forum et tu veux aussi un site web ? Regarde par ici.

-
- Registered User
- Posts: 1106
- Joined: Mon Oct 04, 2004 11:14 pm
- Location: France
- Name: Raphaël M.