Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1128078

    I noticed the preview/fallback image is loading for a few second before the video on my Fullscreen Slider on my homepage on my desktop… I feel this is odd seeing I have a video in that section. How do I have that image not load on desktop? It looks tacky to have an image load before the video.

    #1128550

    Hey goldiejake123,

    You can use css media queries to hide the background image on desktop only.

    Best regards,
    Jordan Shannon

    #1128959

    Ok, what are those?

    #1128962

    Hi,

    Try the following:

    #fullscreen_slider_1{
    background-image:none!important;
    }

    Best regards,
    Jordan Shannon

    #1129005

    That did not work. The image still loads on desktop.

    #1129389

    Hi,

    Thank you for the update.

    You can try this css code instead.

    @media only screen and (min-width: 989px) {
        .avia-slide-wrap {
            background-image: none !important;
        }
    }

    That should disable the fall back image on desktop view.

    Best regards,
    Ismael

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