soapyrice Posted August 4, 2021 Share Posted August 4, 2021 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 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; } } 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
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
Archived
This topic is now archived and is closed to further replies.