Trying to customize the position of each Bootstrap Carousel slide in This Demo.
The code snippet below modifies the caption positioning:
.carousel-caption {
top: 0;
bottom: auto;
}
However, I need to adjust the positions of other slides' captions. I attempted to do this with a new rule using .cap
:
.cap {
top: 50 !important;
bottom: auto;
}
Unfortunately, it doesn't seem to be working. Any suggestions on how to resolve this issue?
Thank you