I’m using the studio them but I wanted to remove dots, arrows and pause button on the slideshow. how can I do this?
1 Like
Hi, @reach4emstars
You can try this code
- Go to Online Store-> Theme->Edit code
- Asset-> base.css ->paste the below code at the bottom of the file.
.slideshow__controls {
display: none !important;
}
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-next, .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-prev { display: none !important; } .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-next, .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-prev { display: none !important;}
maybe it helps
Please add the following CSS code to your assets/base.css bottom of the file.
.slideshow__controls {display: none !important;}
Thanks!