Hi @Esperanz,
Did you mean show the left sidebar all the time?

It could be done with the custom CSS. Please try adding this custom CSS under Theme Options > CSS:
@media (min-width: 768px){
.x-sidebar {
position: fixed;
top: 0;
width: 250px;
height: 100%;
margin: 0;
border-top: 0;
z-index: 1031;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.x-sidebar-content-active .x-sidebar {
left: 0;
border-right: 1px solid #dfdfdf;
border-right: 1px solid rgba(0,0,0,0.075);
overflow-y: auto;
}
body.x-sidebar-content-active, body[class*="page-template-template-blank"].x-sidebar-content-active.x-blank-template-sidebar-active {
padding-left: 295px;
}
}
Let us know how it goes!