I created a slideshow in the top row and have added two containers below it. However, every time I try to include an image instead of text in the container, the image ends up overflowing the container and takes over the entire page. How can I ensure that the images stay within the container without spilling out? Additionally, I would like to make these images clickable links if possible. At the moment, I haven't applied any CSS styling to this layout, but I believe it may be necessary.
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row">
<div class="col-md-3 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-body">
Insert Your Text Here<br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</div>
<div class="col-md-3 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-body">
Or Maybe Even Put Something Else Here<br><br><br><br><br><br><br><br><br><br>
</div>
</div>
</div>
</div>