Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello @pipe_pc

    First you have to use a child theme to apply your own customization(s) because if you don’t everything will get back to the original configuration on the next theme update.

    To do this, you’ll have to use media queries or jQuery, it depends from where (the width) you wish to hide it…
    Let’s say that you want to hide it when the screen is smaller than 480px

    @media screen and (max-width: 480px) {/* here we are setting the width from where we want to aplly the following rule(s) */
        #frontpage-slider {/* here we are targeting the slider by his id */
            display: none; /* here we are telling the slider to disapear when the width of the screen is less than 480px */
        }
    }

    SYA ??

    • This reply was modified 8 years, 4 months ago by LebCit.
    Thread Starter pipe_pc

    (@pipe_pc)

    Thanks mate! So grateful for your fast answer!

    Hello @pipe_pc,

    You are most welcome !

    SYA ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hide Slider on mobile’ is closed to new replies.