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.
/* 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 */
/* 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”
Hi,
i just wanted to remove the slider commands on every slide but i put the:
but it doesn’t work. I put in the custom css section of the theme and directly in the style.css editor. i’m using a Customizr child theme.
Thanks!
Hi Angelo,
Since v3.2+, the new css code to hide those controls is :
/* All Carousels */
.tc-slider-controls {
display: none;
}
Thanks for reporting this!
Thank you for this helpful advice. It saves a lot of time.
There is a small typo. In the second rule, the descendant selector should have a space between the 2 class names. Otherwise, it does not work properly. This one works:
Thanks for pointing this out Marcus