A link to the jfiddle here: https://jsfiddle.net/obanc/vqabukvj/
<div id="bodywrapper" style="max-width:100%;min-width:1000px;overflow:auto;">
<div id="leftpanel" style="width:20%;position:absolute;background-color:red;height:100%;left:0;top:0;min-width:200px">
</div>
<div id="rightpanel" style="width:80%;position:absolute;background-color:blue;height:100%;right:0;top:0;min-width:800px">
</div>
</div>
This is a more detailed version of an earlier unsolved question. I am not sure why parts of the page are rendered unseen when the page width becomes narrower. From my knowledge, the min-width tag is supposed to make a scrollbar produce when the #bodywrapper width of 1000px is compromised and becomes less than 1000px. Instead, parts of the divs are being hidden from the page when it narrows less than 1000px. Any help is appreciated, been stuck on this problem for a while.