Hi there,
Unfortunately, the customization you want is out of our support scope. The customization should have a Javascript code which calculates the height of the content on each page.
We will not do the customization ourselves, but we will help you do it yourself. Kindly add the Code below to X > Launch > Options > JS:
var theHeight = jQuery('.x-main').height();
jQuery('.x-sidebar').height(theHeight);
This calculates the content height and makes the Sidebar the same height.Also add the code below to X > Launch > Options > CSS:
and change the previously suggested code to this:
body .x-sidebar {
overflow: auto;
}
That will force the sidebar to scroll when the height is smaller than actual content so that the viewer can scroll to see the rest of the content.
Thank you.