Our cart pop up (ajaxify) is disappearing behind our header on small screens - 480px and below.
How do I fix the css?
A cart popup (ajaxify) was appearing behind a sticky header on screens 480px and below, making it inaccessible to users.
Solution provided:
theme.scss.css file.ajaxify-modal.is-visible positioning with top: 45px!importantOutcome:
The CSS fix successfully resolved the z-index/positioning issue, allowing the cart popup to display properly above the header on small screens.
Our cart pop up (ajaxify) is disappearing behind our header on small screens - 480px and below.
How do I fix the css?
Hi @ChrisW3
@media screen and (max-width: 480px) {
.ajaxify-modal.is-visible {
top: 45px!important;
}
}
That worked perfectly, thank you
Hi @ChrisW3
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance. If helpful, please like all posts. ![]()
Best regards,
Devcoder ![]()