Banner question

For support and discussion related to templates, themes, and imagesets in phpBB 3.2.
Post Reply
guyyy
Registered User
Posts: 2
Joined: Thu Jul 12, 2018 7:58 am

Banner question

Post by guyyy »

i'm using this theme over at the forum,

http://www.positiverestart.org/

i have made a banner to replace the "proflat" and ive uploaded it as the same name and over righted it
but the banner isnt changing?

what am i doing wrong?
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: Banner question

Post by david63 »

Did you purge the cache?
David
Remember: You only know what you know and - you don't know what you don't know!

I now no longer support any of my extensions but they will start to become available here
User avatar
DTMWC
Registered User
Posts: 379
Joined: Tue Jan 16, 2018 6:17 am

Re: Banner question

Post by DTMWC »

Your logo is actually loading in the proflat CSS, but there is an SVG logo that's loading before it, styles/proflat/theme/style_proflat.css

Lines 364-368:

Code: Select all

.site_logo {
	background-image: url("./images/site_logo.png");
	background-image: url("./images/site_logo.svg");  /* this one is loading */
	background-repeat: no-repeat;
}
Try removing the .svg line, then you need to change the size of the logo,

Lines 28-31:

Code: Select all

.site_logo {
	width: 168px; /* should be 250px */
	height: 59px; /* should be 70px */
}
After you've saved it and the purged the cache in the ACP, your logo should be loading. :)
Boom.
guyyy
Registered User
Posts: 2
Joined: Thu Jul 12, 2018 7:58 am

Re: Banner question

Post by guyyy »

oh sweet thankyou sooo much!

whats purged??
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: Banner question

Post by david63 »

guyyy wrote: Thu Jul 26, 2018 7:06 am whats purged??
ACP > General > down at the bottom there is a "Purge cache" button
David
Remember: You only know what you know and - you don't know what you don't know!

I now no longer support any of my extensions but they will start to become available here
Post Reply

Return to “[3.2.x] Styles Support & Discussion”