Hide the Slider Controls

Where to copy/paste this code?
The simplest way is to use the Custom CSS section of the customizer option screen. If you have many customizations to make in CSS and PHP, then we strongly recommend you create a child theme. Everything you need to know about creating a child theme with Customizr here.

3.2.*/3.3.* code
/* START OF Hide the Slider Controls */
/* All Carousels */
.tc-carousel-control {
display:        none;
}

/* Front-page Carousel only */
.home .tc-carousel-control {
display:        none;
}
/* END OF Hide the Slider Controls */

 

3.1.* code
/* START OF Hide the Slider Controls */
/* All Carousels */
.carousel-control {
display:        none;
}

/* Front-page Carousel only */
.home .carousel-control {
display:        none;
}
/* END OF Hide the Slider Controls */

 

4 thoughts on “Hide the Slider Controls”

Comments are closed.