Strange scenario... when using this code, a picture appears with the related text BELOW it. It's crucial that the picture remains clickable, but the text isn't wrapping as desired (see below):
<div class="col-md text-center " style="margin-top:15px;">
<h3>Heading</h3>
</div>
<div class="col-md" style="margin-top:15px;">
<div class="col-xs-5 nopad">
<a href="{link to external website}"><img src="images/picture.jpg" style="max-height: 145px; margin-right: 15px; margin-bottom: 5px; "></a>
</div>
<div class="col nopad" style="width:100%;">
Lorem impsum, etc..........
</div>
</div>
</div>
</div>
</section>
The objective is to have the text wrap around the right and bottom of the photo while keeping the image clickable. Adding "float-left" before the <div> tag causes the image to lose its clickable functionality. Here's the code snippet that creates this issue:
<div class="col-md" style="margin-top:15px;">
//LINE BELOW CONTAINS FLOAT-LEFT
<div class="col-xs-5 nopad float-left">
<a href="{link to external website}"><img src="images/picture.jpg" style="max-height: 145px; margin-right: 15px; margin-bottom: 5px; "></a>
</div>
<div class="col nopad" style="width:100%;">
Lorem impsum, etc..........
</div>
</div>
I've tried various solutions without success. Rearranging the code hasn't helped either. The presence or absence of "float-left" seems to be causing the issue.