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

    Hi All.

    Just wondering how to make images in layer slider resize with the page percentage wise?

    #542202

    Hi haydenkirk,

    Could you provide us with a link to the site in question so that we can take a closer look please? Please try to be a bit more specific to what the problem is as well.

    Best regards,
    Rikard

    #542755

    Sure, see attached

    #542883

    Hi,

    Thanks for the link though it seems to not be loading on my end, it might something temporary though. If you want greater control of the slider you might have to add another one to show only for mobile screens and with images better adapted to those sizes. You can use CSS similar to the following to hide/show the correct section:

    @media only screen and (min-width: 768px) {
     #section-desktop {
    display:block !important;
    }
     #section-phone {
    display:none !important;
    }
    }
    
    @media only screen and (max-width: 767px) {
     #section-desktop {
    display:none !important;
    }
     #section-phone {
    display:block !important;
    }
    }

    Regards,
    Rikard

    #547929

    Sorry, added the correct link below

    #548516

    Hi,

    I think your best option would be to create a new slider adapted to smaller screens and then hide it with CSS, could you try that out? We can help you out hiding the correct one once you are done.

    Best regards,
    Rikard

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