After discovering a template that I want to use for my personal project, I noticed a missing element...
There's a div where content can be added. That's fine, but what if I add more content than fits in the space provided? The whole website becomes scrollable, but I only want the div to be scrollable...
I've tried various approaches like fixing the body (position: fixed;) but it messes up the template layout.
Even preventing the div from being scrollable didn't work (similar to How to make a DIV scrollable instead of BODY?).
Here is the entire template:
<!DOCTYPE html>
<html>
... (omitted for brevity)
</html>
The specific div I want to be scrollable is "", and here is a screenshot showing how it currently looks: ScreenshotItLooksLikeNow
Any help or suggestions on resolving this issue would be greatly appreciated.