If one only needs this on a specific slide of the slider and wants to leave the rest untouched, I think it would be better to target the specific sliders. They would have to add all slides that need to be changed to the selectors of the code below. In the example I only applied the changes to slide 2 and 3, leaving the rest unchanged:
.blog .carousel-inner .item:nth-child(2) .carousel-caption,
.blog .carousel-inner .item:nth-child(3) .carousel-caption {
background: transparent;
min-width: 100%;
height: 100%;
padding: 0;
margin: 0;
position: absolute;
top: 0;
bottom: 0;
}
.blog .item:nth-child(2) .carousel-caption h1,
.blog .item:nth-child(2) .carousel-caption .lead,
.blog .item:nth-child(3) .carousel-caption h1,
.blog .item:nth-child(3) .carousel-caption .lead {
display: none;
}
.blog #customizr-slider .item:nth-child(2) .btn-primary,
.blog #customizr-slider .item:nth-child(3) .btn-primary {
background: transparent;
color: transparent;
box-shadow: none;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
text-shadow: none;
}
You can add selectors for as many slides you need. Of course, if the slider you want modified is not the one on .home or .blog you need to modify the prefix of the selectors to target your page slider. I hope I’m being clear enough. ??