I have two bootstrap columns "left" and "right"; I want to fix the left column with the screen and disable scroll. but i want to enable scroll in the right column which would have more content. Basically i want to display posts such that the post heading would display in left column and the post content would display in right column Exactly like this . Note: I have used overflow-y: hidden;
but it did'nt worked. This is what i want to achieve: https://blog.squarespace.com/blog/introducing-promotional-pop-ups
this is my code for left col:
<div id="main" class="col-md-6 left-half ">
<h2 style="diplay:inline-block">Intrigue</h2>
<input id="morearticlesbtn" class="button" type="button" onclick="openNav()" value="More Articles ">
<div class="row">
<div class="post-meta col-md-6">
<p>July 18, 2017</p>
<p>By: James Crock</p>
<a href="#"> Transport</a>
</div>
<div class="col-md-6">
<div class="line"></div>
</div>
</div>
<div class="title-div">
<h1 class="title">Squarespace Sponsors 2017 D&AD New Blood Awards</h1>
</div>
<div class="row">
<div class="col-md-9" >
<div class="line bottom-line"></div>
</div>
<div class="col-md-3 bottom-line-text">
<h4>Next</h4>
</div>
</div>
</div>
This is css code:
.left-half{
height: 100%;
overflow-y:hidden;
position: fixed;
bottom: 0;
height: 100vh;
}
.left-half h2{
display: inline-block;
}