From 86c69883b88e9cca466fe2c12730279a88865a60 Mon Sep 17 00:00:00 2001 From: Kirik Date: Wed, 12 Nov 2025 20:15:23 +0100 Subject: [PATCH] Revert to desktop.webp for mobile - troubleshoot missing background - mobile2.jpg path seems to cause issues - Reverting to desktop.webp for both mobile and desktop - Will investigate mobile2.jpg issue separately --- static/css/adaptive-background.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/css/adaptive-background.css b/static/css/adaptive-background.css index 3f234e0..179b642 100644 --- a/static/css/adaptive-background.css +++ b/static/css/adaptive-background.css @@ -1,11 +1,11 @@ /* Adaptive Background Images for Mobile and Desktop */ -/* Mobile devices (max-width: 736px) - Use mobile2.jpg */ +/* Mobile devices (max-width: 736px) - Use desktop.webp */ @media screen and (max-width: 736px) { #wrapper > .bg { background-image: url('../../images/overlay.png'), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), - url('../../images/mobile2.jpg') !important; + url('../../images/desktop.webp') !important; background-size: cover; background-position: center; background-attachment: fixed;