Online & Offline Image

For support and discussion related to templates, themes, and imagesets in phpBB 3.2.
User avatar
Exclusive
Registered User
Posts: 676
Joined: Mon Jun 25, 2018 1:33 pm

Online & Offline Image

Post by Exclusive »

For quite a long time, I have been using/added an offline image in my board, but I discovered that the offline image size is a bit bigger than that of the online image only in mobile view, but the sizes are the same in desktop view. How can i fix this?

See image below:


[removed]
Last edited by Exclusive on Tue Dec 03, 2019 1:50 pm, edited 1 time in total.
Use Search Button to get Instant Results | Follow Forum Rules
Avoid Spams in the forum to prevent banning the offending account. | ⟿ Visit My Awesome phpBB Forum! ⬳

Best Web Hosting with 99.9% Uptime! | ✔ Buy Cheap Domain Names
User avatar
Mannix_
Registered User
Posts: 2029
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: Online & Offline Image

Post by Mannix_ »

.online image has adjustment for mobile in responsive.css while offline doesn't

Code: Select all

 @media (max-width: 700px)
.online {
    background-size: 40px;
}
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
Exclusive
Registered User
Posts: 676
Joined: Mon Jun 25, 2018 1:33 pm

Re: Online & Offline Image

Post by Exclusive »

Mannix_ wrote: Tue Dec 03, 2019 1:28 pm .online image has adjustment for mobile in responsive.css while offline doesn't

Code: Select all

 @media (max-width: 700px)
.online {
    background-size: 40px;
}
Problem solved! I just added that of the offline image. Thank you!

Code: Select all

	.online {
		background-size: 40px;
	}
	
	.offline {
		background-size: 40px;
	}
Use Search Button to get Instant Results | Follow Forum Rules
Avoid Spams in the forum to prevent banning the offending account. | ⟿ Visit My Awesome phpBB Forum! ⬳

Best Web Hosting with 99.9% Uptime! | ✔ Buy Cheap Domain Names

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