soapyrice Posted August 4, 2021 Share Posted August 4, 2021 (edited) Site URL: https://www.omegachurchsa.org/ so on my desktop view everything is fine but on mobile view my background image section covers my footer. Heres the css I used to make my image of the guy that size on mobile ( I would like to keep my image that size if possible). @media screen and (max-width:767px) { .homepage section:last-child { height: 30vh !important; min-height: unset !important; } } I just need to make my footer text smaller and all three areas of text show up horizontally instead of stacking on top of each other. PASSWORD: jesusislord on my desktop view everything is fine Edited August 4, 2021 by soapyrice password missing Link to comment
tuanphan Posted August 5, 2021 Share Posted August 5, 2021 16 hours ago, soapyrice said: Site URL: https://www.omegachurchsa.org/ so on my desktop view everything is fine but on mobile view my background image section covers my footer. Heres the css I used to make my image of the guy that size on mobile ( I would like to keep my image that size if possible). @media screen and (max-width:767px) { .homepage section:last-child { height: 30vh !important; min-height: unset !important; } } I just need to make my footer text smaller and all three areas of text show up horizontally instead of stacking on top of each other. PASSWORD: jesusislord on my desktop view everything is fine Hi. Remove this code (your code targets both last section in Page Content + last section in Footer so the problem appears) @media screen and (max-width:767px) { .homepage section:last-child { height: 30vh !important; min-height: unset !important; } } add new code (this code target last section in Homepage Page Content) @media screen and (max-width:767px) { .homepage article section:last-child { height: 30vh !important; min-height: unset !important; } } soapyrice 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message How to: Setup Password & Share url - Insert Custom CSS - Page Header - Upload Custom Font - Upload File - Find Block ID - Contact Customer Care Link to comment
soapyrice Posted August 5, 2021 Author Share Posted August 5, 2021 7 hours ago, tuanphan said: Hi. Remove this code (your code targets both last section in Page Content + last section in Footer so the problem appears) @media screen and (max-width:767px) { .homepage section:last-child { height: 30vh !important; min-height: unset !important; } } add new code (this code target last section in Homepage Page Content) @media screen and (max-width:767px) { .homepage article section:last-child { height: 30vh !important; min-height: unset !important; } } Thank you so much! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment