• Is there a way to disable the carousel on mobile devices but keep it active on desktops?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Can try the following
    Go to Appearance > Customizer > Additional CSS and put this:

    #slider {
        display: none !important;
    }

    Let me know if it works!

    Thread Starter ksduffy1

    (@ksduffy1)

    That just takes the carousel away completely from desktop and mobile. I want the carousel to remain on the desktop but not show up on mobile devices.

    This issue was resolved by adding the following CSS to the theme Customizer:

    @media screen and (max-width: 800px)
    #slider {
    display: none !important;
    }

    Hi

    I am recently using Lucienne on https://www.greg-wolf.com , and I can’t make the carousel move
    I’ve just chosen the category and the number of posts, but I don’t find anything about making move the carousel, or choosing the time delay

    Any idea ?
    Thanks for your help

    Your carousel can be advanced, but it doesn’t automatically advance. Is that what you’re trying to accomplish?

    The only way I’ve found is to edit the owl.carousel.js file at /lucienne/js/owl.carousel.js, line 1470 (v1.3.3) to be as follows:

    autoPlay: true,
    stopOnHover: true,

    Any edits to the core theme files will be overwritten if you do an automatic theme update, so backup your changes.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Owl Carousel’ is closed to new replies.