For one of my webpages, I am finding that when I resize the window, the picture I have on the right side of the page (at full screen) will resize and move to the bottom of the text. How do I keep this image stationary so that when I resize it, it doesn't move but a scroll bar will appear allowing the user to scroll to the right to see the image? Please find my code below:
<div class="row">
<div class="col-md-1">
</div>
<div class="col-md-6">
<div class="row">
<div id="info">
<h3 id="rank"><span style = "color:orange"> words:</span></h3>
<span id="picture"></span>
<h4 id="blockquoteField"></h4>
<div id="density"></div>
</div>
</div>
</div>
<div class = "col-md-4">
<img src = "image.png" alt = "right picture" style = "height: 580px;"> <!-- original height = 580 px, width = 780px -->
</div>
<div class="col-md-1">
</div>
</div>