Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #731293

    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.

    #731295

    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?

    #731414

    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

    #731480

    I have tried this but it deletes the image altogether.

    #732923

    Hi,

    Can you try using an Image element instead of background image.

    Best regards,
    Nikko

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.