Dear all, I have solve the issue by replacing the .sidebar code in the structure part.
Original code:
.sidebar {
width: 280px;
padding: 50px 40px;
position: absolute;
top: 0;
left: 0;
font-size: 0.71em;
}
New:
.sidebar {
width: 280px;
padding: 6% 40px;
position: fixed;
top: 0;
left: 0;
bottom: 0;
font-size: 0.71em;
}
Thanks: