I'm not trying to do anything too fancy here, but instead of the Bootstrap Carousel Captions defaulting to aligning to the bottom of the Carousel, how do I get them to default align to the top?
Add this to your css to change the element position:
.carousel-caption {
top: 0;
bottom: auto;
}
See demo fiddle
You could also:
.carousel-caption {
position: absolute;
top:-40px
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With