Good afternoon. On the site, the left sidebar in the mobile version goes down under the blocks. how do I make the sidebar appear at the top in the mobile version?
Hi,
You can fix it with the CSS:
@media (max-width: 768px){
#main-container >.row {
display: flex;
flex-direction: column-reverse;
}
}