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

    Hi,

    Can I disable the slider on my theme but only disable it when the theme is viewed on a smartphone?

    #139985

    Hi,

    Please add following code to Quick CSS in Enfold theme options page under Styling

    @media only screen and (min-width: 480px) and (max-width: 767px) { div.ls-wp-fullwidth-container { display: none; } }

    Regards,

    Yigit

    #139986

    Hi Yigit,

    I have pasted the code into the Quick CSS in the Enfold theme options under styling. But when viewed on my Android phone the slider is still displayed.

    Cheers Vicki

    #139987

    Hi!

    Try following code instead

    @media only screen and (max-width: 767px) {
    div.ls-wp-fullwidth-container { display: none !important; }
    }

    If it still doesn’t wrk try to increase the max-width value and set iit to i.e. 1024px

    Regards,

    Peter

    #139988

    PERFECT – worked a treat many thanks :)

    #139989

    Hi!

    Great :)

    Regards,

    Peter

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Disable Slider for mobile size responsive theme’ is closed to new replies.