Do you mean that the sidebar gets moved when viewport is below 960px? This is a common design pattern for modern sites to achieve usability for mobile devices, as shifting the sidebar to the bottom of the page allows for easier focus on content before navigation. If you do not want this to occur, you can fix it by disabling the relevant CSS media queries in template.css and nucleus.css, specifically into something like this:
Template.css:
@media only all and (max-width: 47.938em) {
#sidebar {
/* padding-left: 0; */
} }
Nucleus.css:
@media only all and (max-width: 47.938em) {
.block {
/* -webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
-webkit-flex: 0 100%;
-moz-flex: 0 100%;
-ms-flex: 0 100%;
flex: 0 100%; */
} }
@media only all and (max-width: 47.938em) {
body [class*="size-"] {
/* -webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
-webkit-flex: 0 100%;
-moz-flex: 0 100%;
-ms-flex: 0 100%;
flex: 0 100%; */
} }
.size-1-3 {
/* -webkit-box-flex: 0;
-moz-box-flex: 0;
box-flex: 0;
-webkit-flex: 0 33.33333%;
-moz-flex: 0 33.33333%;
-ms-flex: 0 33.33333%;
flex: 0 33.33333%; */
}
You'll need to find the references and change them (I just commented them out with developer tools and copied the resulting css), or add them into custom.css with overrides.