@fouldsy99
as I see, it’s all working as it should. If I resize browser to less than 480px, sideoffer DIV is disabled. Maybe you need to set that max-width a bit wider.
Have you tried with style i posted?
@media screen and (max-width: 480px) {
#sideoffer {
display: none !important;
}
}
I’m looking at your site, and i can’t see this setting anywhere? This peace of code placed in your theme style sheet will completely remove sideoffer from browser view.
Hi Nelson,
if you still in doubt how to solve this, take this and place it in your theme stylesheet:
@media screen and (max-width: 480px) {
#sideoffer {
display: none !important;
}
}
Normally you place max-width that suits your needs.