I have a carousel with an image that i would like to put text over, but it is not working. The text appears under the image instead of overlayed on top of it
<!-- WRAPPER FOR SLIDES -->
<div class="carousel-inner">
<div class="active item">
<div class="carousel-content">
<img src="img/Slide 1.jpg" alt="..." position="relative">
<p>TEST</p>
</div>
<div class="carousel-caption">
<h3>What we do</h3>
</div>
</div>
<div class="item">
<img src="http://placehold.it/1200x315" alt="...">
<div class="carousel-caption">
<h3>What we Do</h3>
</div>
</div>
<div class="item">
<img src="http://placehold.it/1200x315" alt="...">
<div class="carousel-caption">
<h3>Who we Are</h3>
</div>
</div>
</div>
To make an overlay caption just add div with . position-absolute and bottom-0 below the image and all done.
Additional details. Add captions to carousel images and set transition speed: To add a caption, hover over any image, click the “Add text” button, and select “Add caption”.
You could simply position
the element absolute
ly just like built-in captions and set the top
/bottom
, left
/right
offsets.
Note that the carousel captions have z-index: 10
by default, so you may want to give the positioned element a higher z-index
:
For instance:
.carousel-content {
position: absolute;
bottom: 10%;
left: 5%;
z-index: 20;
color: white;
text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet"/>
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="active item">
<img src="http://lorempixel.com/1200/315" alt="...">
<div class="carousel-content">
<p>TEST</p>
</div>
<div class="carousel-caption">
<h3>What we do</h3>
</div>
</div>
<div class="item">
<img src="http://placehold.it/1200x315" alt="...">
<div class="carousel-caption">
<h3>What we Do</h3>
</div>
</div>
<div class="item">
<img src="http://placehold.it/1200x315" alt="...">
<div class="carousel-caption">
<h3>Who we Are</h3>
</div>
</div>
</div>
</div>
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