Klever Themes Support

How can I disable Hero Slider for the Mobile/Responsive Template?

We want to disable the Hero Slider on the home page, just for mobile view. Is there a quick way to do this via CSS or does it require coding? I don’t see options for mobile template anywhere, specific to the slider.

hero slidermobileresponsive
You can easily remove the hero slider via CSS. Generally the code will look like this:
<div style="visibility: hidden">
  <span>not visible</span>
  <span style="visibility: visible">visible!</span>
</div>