Posted April 21Apr 21 It is nice that the sidebar can be made to stick. It would be nice if there was also the ability to make it scrollable, independent from the main page.Thank you for your consideration.
April 21Apr 21 Author 4 hours ago, Drewfus said:You can with theme editor global, sidebar, turn off sticky sidebarThat doesn't allow for the sidebar to be independent of the main page, though.
April 22Apr 22 There are no plans to implement this by default, however you can achieve that using CSS if you wish:/* Scrollable sidebar */ .ipsLayout__secondary-sticky-inner{ max-height: calc(100vh - var(--i-sticky-offset) - var(--i-sp_block) * 2); overflow: auto; }
April 23Apr 23 Author 13 hours ago, Ehren said:There are no plans to implement this by default, however you can achieve that using CSS if you wish:/* Scrollable sidebar */.ipsLayout__secondary-sticky-inner{ max-height: calc(100vh - var(--i-sticky-offset) - var(--i-sp_block) * 2); overflow: auto; }Appreciate the tip.