I'm facing an issue. Any tips on how to center both the image and text in the thumbnail? Also, is there a way to make sure the font size of the text changes dynamically without overlapping the thumbnail?
Below is my code snippet:
<div id="myCarousel" class="carousel slide" data-interval="3000" data-ride="carousel">
<!-- Carousel items -->
<div class="col-lg-2 col-md-2 col-sm-2 col-xs-6">
<a id="tileF" href="#" class="thumbnail">
<div class="carousel-inner">
<div class="active item">
<img src="HERE IS MY IMAGE" class="img-responsive">
</div>
<div class="item">
<p>
<h4>HERE IS MY TEXT.</h4>
</p>
</div>
</div>
</a>
</div>
</div>
Appreciate any assistance! :)