Hey everyone, I'm currently working on getting some text to show up below an image using Bootstrap 3.
Here's what I have so far:
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-3"><img alt="my image" class="img-about" src="Images/s1.fw.png"></div>
<div class="col-md-3">
<h2>aa</h2>
</div>
Currently, it's displaying side by side, but I want the image to be on top with the text below, like this:
Picture
-Text
Thank you!