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.