
The scrollbars on the right side of the screen only scroll the article-area, not the menu.
Best solution would be that the whole page scrolls when the menu gets longer, not just the article.
.sidebar_wrapper {
position: absolute;
}
@media only screen and (max-height: 800px) {
.sidebar_wrapper {
position: absolute;
}}
@media only screen and (max-height: 800px) {
.sidebar_wrapper {
position: absolute;
height: auto;
}
#socialmedia, #copyright {
position: relative;
}}
@media only screen and (max-height: 800px) {
#socialmedia, #copyright {
display: none;
}}
@media only screen and (max-height: 700px) {
/* Hide default hornav menu */
.hornav {display:none !important;}
/* Show mobile hornav menu */
.slicknav_menu {display:block;}
}