Page 15 of 15
Re: PhpBB Christmas
Posted: 28 Nov 2024, 19:33
by Stoker
Galandas wrote: 26 Nov 2024, 16:17
Hi I updated your extension compatible for phpBB 3.3x if you want to make it available here it is
Im happy its still in use. Thank you
I worked on it a couple of months ago and noticed that it did slow down the board.
Did you experience this too?
Re: PhpBB Christmas
Posted: 01 Dec 2024, 13:26
by Galandas
Hi, I confirm that the forum slows down with the extension enabled.
Re: PhpBB Christmas
Posted: 01 Dec 2024, 17:56
by Stoker
Galandas wrote: 01 Dec 2024, 13:26
Hi, I confirm that the forum slows down with the extension enabled.
You can try this edited css file. It removes the body bg image and the forumbg image
Code: Select all
/* style the hat */
@media screen and (min-width: 700px) and (min-device-width: 700px){
.hat {
background: url("./images/christmas_hat.png");
width: 40px;
height: 47px;
position: absolute;
z-index: 1;
margin-left: -18px;
margin-top: -6px;
}
/* style the headerbar */
.headerbar {
background: #06032C url("./images/santa_logo.jpg") no-repeat center center;
height:150px;
}
/* background image */
/*
html, body {
background: #000 url("./images/santa_bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
*/
/* style the big headerbar hat */
#banner-xmas {
background: url("./images/christmas_hatbig.png");
width: 128px;
height: 128px;
position: absolute;
z-index: 1;
margin-left: -58px;
margin-top: -182px;
}
/* style the posting box */
#message {
background: #fff url("./images/christmasbg1.png") no-repeat center center;
}
/* style the row on hover */
li.row:hover {
background-image: url("./images/christmas_row.png");
background-repeat: no-repeat;
background-position: center right;
}
/* style the online list */
/*
.online-list {
background: transparent url("./images/snowsig.gif") no-repeat center top;
}
*/
/* style the forabg and forumbg */
/*
.forumbg, .forabg {
background: #084A8C url("./images/bglistsnow.gif") repeat;
-webkit-box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
-moz-box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
box-shadow: inset 0 20px 20px -20px rgba(0,0,0,0.8);
}
*/
}
Re: PhpBB Christmas
Posted: 02 Dec 2024, 07:52
by Galandas
ok I'll try today, thanks