Having a bit of trouble with the bootstrap framework.
I am trying to set up a simple box with an image on the left side and some text and other elements on the right side.
However, I am encountering issues when it is viewed on smaller screens.
<div class="col-md-8" style="margin-top: 3px;">
<div class="feed-box">
<div class="row">
<div class="col-md-1">
<img style="max-width: 52px;" src="http://0.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=250">
</div>
<div class="col-md-11">
<div class="row">
<p><a href="#">John Doe</a> announced something</p>
</div>
<div class="row">
<p>
According to the documentation, nesting is simple—just place a row of columns within an existing column. This results in two columns for desktops that scale to large desktops, with another two equal width columns within the larger column.
</p>
</div>
<div class="row">
<a href="#">Comment</a>
<a href="#">Share</a>
</div>
</div>
</div>
</div>
</div>
Visual explanation:
Desktop (padding not relevant here):
Small screen (issue):
Desired layout for small screens: