Home Forums Theme support Disable Allslider in Strong theme

This topic contains 5 replies, has 3 voices, and was last updated by  7Theme Support 4 years, 12 months ago.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • I would like to disable the Allslider slider on smaller screens, such as smartphones. Is there a way to edit the media queries to disable the slider at specific breakpoints?

    Hi,

    you can open the file “responsive.css” in the folder “style/” in the root of the theme folder, than search for the media query of the screen size where you want to hide the slider and than add this:

    #slideshow_header {
     display:none;
    }

    Hi,
    Same question for the Dreamy Hotel theme.

    Hi,

    you can add this CSS code to the end of your style.css file:

    @media only screen and (max-width: 767px) {
    #cycle_container {
    display:none !important;
    }
    }

    This should do the job.

    Works like a charm!
    Many thanks!

    You are welcome!

Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.