Hello. I have created a custom sidebar. One block with the course outline is normal, the second is a sticky link to my forum. The current position of this sticky block is at the top of the bar. I would like it to be at the bottom, so when the user reads the content the block does not align with the reading area. How can I achieve this? Sample page in the info. Thanks!
with CSS the most i can suggest is changing your CSS top: 0; property to something like this:
top: calc(100vh - 360px);
This will push the element down the height of the viewport minus 360px.
Which will move the widget down the screen…. but it will always be in that position, not just when scrolling.