Currently, I am exploring how to implement a two-column layout with the left column serving as a scrollable navbar. At this early stage of development, please excuse any imperfections in the code!
One issue that arose involved using the .sidebar
class with the attribute "position:fixed"
in the left column. The problem manifested as overlap between the content in the left column and the right column when this positioning was applied.
Experimenting with changing the grid column size from "col-sm-2"
to simply "col"
resolved the overlap problem, but it led to a noticeable gap between the content on the left and the right.
The use of "position:fixed"
is non-negotiable for my project. Is there a way to prevent this overlapping issue while maintaining this fixed positioning?
Any suggestions or guidance would be greatly appreciated.
Visit this link for more context and to contribute your insights.