MaxAzulay Posted November 10, 2020 Share Posted November 10, 2020 Hi, I'm putting together a website: www.maxandal.org I like the way the background image looks on desktop but on my phone it's zoomed in and cropped. I don't want to have to change the image but I'd like it to be also properly formatted for mobile. Any help advised thank you Link to comment
tuanphan Posted November 11, 2020 Share Posted November 11, 2020 Add to Home > Design > Custom CSS /* resize mobile home banner */ @media screen and (max-width:767px) { .homepage #page section:first-child { min-height: 30vh !important; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
MaxAzulay Posted November 11, 2020 Author Share Posted November 11, 2020 Thank you!!!! Link to comment
tuanphan Posted November 12, 2020 Share Posted November 12, 2020 I see it also crop on tablet, use this code for tablet /* resize tablet banner */ @media screen and (max-width:991px) and (min-width:768px) { .homepage #page section:first-child { min-height: 40vh !important; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.