I’m having issues with the mobile version of the site. The background becomes a header and conceals the top of the text blocks on every page when loaded on my iPhone. This issue doesn’t appear on mobile-scaled desktop windows, as you can see in the linked photos.
What’s causing it to become a header and overlap the articles on mobile? What’s the fix?
Simulated Mobile on Desktop (No issue)
Actual Mobile screenshot (overlapped text)
Hey Chris,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
#av_section_1 .av_one_third {
margin-top: 0 !important;
}
}
Best regards,
Rikard
Hi Rikard!
I removed all of the custom CSS on the site, and tried running only that, but to no avail. The backgrounds are still becoming a foreground element in mobile.
Would screenshots of any particular part of the backend help you to make sense of what’s causing this error?
Hi,
I don’t think screenshots will help unfortunately. Could you try giving the 1/3 elements a custom class in the element option to see if that helps? You could use custom-one-third for instance, then use this in Quick CSS:
@media only screen and (max-width: 767px) {
.custom-one-third {
margin-top: 0 !important;
}
}
Best regards,
Rikard
