Related Posts Widget – Scrolling Sidebar

For AE-Post Blocks widgets, to force overflow scrolling in Y direction, add the following CSS code to the “Custom CSS” area of the “advanced” tab.

/* AE Post Block Widget Overflow Scrolls at 100% viewport height */

.ae-post-list-wrapper{
max-height:100vh;
overflow:auto;
}