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

    Hi, could you tell me how I can remove the display of the Fullwidth Easy Slider on a mobile device only?

    Also, a side question, how can I force the height of the Fullwidth Easy Slider on mobile only.

    Thanks!

    #270891

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    #270899
    This reply has been marked as private.
    #270902

    Removing the captions on mobile could do the trick too:

    @media only screen and (max-width: 767px) {
    div.slideshow_caption {
        display: none;
    }
    }

    Best regards,
    Josue

    #270903

    Thanks Josue, that works somewhat, might be a little confusing for the end-user though as its just scrolls three random images.

    Can you tell me is there a way to stop the scrolling and just show the initial image only (no dots or arrows either)?

    #270911

    You could do the following: put the first slide as a background image in a separate color section (with an ID of mobileimage), then add this to the Quick CSS:

    @media only screen and (max-width: 767px) {
    #mobileimage{ display: block; }
    #full_slider_1{ display: none; }
    }
    @media only screen and (min-width: 767px) {
    #mobileimage{ display: none; }
    }

    So, now in smaller screens the mobileimage section will appear and the slideshow will disappear.

    Best regards,
    Josue

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