I am currently attempting to customize the appearance of my carousel caption, but I have noticed that when I minimize the screen, the caption disappears. I came across a solution in another forum post suggesting to remove the "d-block d-m-block" classes, but unfortunately, that did not resolve the issue.
Could this be a feature specific to Bootstrap 3, or is there something else causing the caption to vanish?
EDIT:
<div class="carousel-item">
<img class="img-fluid" src="slide2.jpg" alt="Second slide">
<div class="carousel-caption d-none d-md-block">
<h2>Heading</h2>
<p>Paragraph</p>
</div>
</div>