Ohhhh I did it!
From this:
#sidebar-primary {
width:240px;
margin:0px 0px 60px 0px;
float:left;
position: fixed;
}
To this:
#sidebar-primary {
width:240px;
height:100%;
margin:0px 0px 60px 0px;
float:left;
position: fixed;
overflow: auto;
}
Now the only problem are margins.
I changed the top margin in here:
#wrap {
max-width: 960px;
margin: 20px auto 0 auto;
padding: 0px 30px 0px 30px;
z-index: 0;
}
#wrap {
max-width: 960px;
margin: 0px auto 0 auto;
padding: 0px 30px 0px 30px;
z-index: 0;
}
Ok I know I am not a CSS genius but hopefully this topic will help someone with the same issue.
🙂
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Where did you make your CSS changes?
Appearance > Editor > Stylesheet (style.css)
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Use this plugin instead; meaning write new CSS instead of editing existing, therefore use this CSS:
#sidebar-primary {
overflow: auto;
height: 100%;
}
#wrap {
margin-top: 0;
}