Bootstrap Carousel Caption Top Alignment?
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
}
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
}