Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #456057

    I’ve set me layer slider to hide when screen width is less than 600px.

    However I need to replace it with an element or the site loses impact.

    I’ve used a color section to try to create element id’s for a video which I can show instead and then used @media max-width in the general styling css section to try to show it when the slider is hidden.

    it doesn’t work well.

    Any ideas?

    #456239

    Hi Catalaioch!

    You forgot the link to your page.

    The CSS your looking for is probably this.

    #id_of_section { display: none; }
    @media screen and (max-width:600px) {
    #id_of_section { display: block !important; }
    }

    Best regards,
    Elliott

    #456371
    This reply has been marked as private.
    #456816

    Hi!

    You had a typo in your CSS. It should be working now.

    Regards,
    Elliott

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