I want the background image to hide when at sub 1400 pixels.
I have added
@media only screen and (max-width: 1400px) { .avia-section {
background-image: none !important;
}
But it makes the other pages go very thin in width and loses some CSS tweaks.
It may be better if it didn’t hide the background image but floated the right of the image to the centre of the page – is that possible?
Hi,
Please try this instead:
@media only screen and (min-width: 1400px) {
.page-id-15 #av_section_2 {
background-image: none !important;
}
}
Best regards,
Rikard
I have tried this but it deletes the image altogether.
Hi,
Can you try using an Image element instead of background image.
Best regards,
Nikko