Configure sidebar grid settings

I know I can change the number of columns of my sidebar by modifying the variable $sidebar-sm-columns.

However, what I really want is the sidebar to behave as col-md-4 instead of col-sm-4 so that in sm screens it drops after the content. Otherwise it’s too narrow and the elements I placed inside don’t work as planned.

Any suggestions? Thanks in advance!

This is more of a Bootstrap question. But to point you in the right direction… just change the mixin used to create the grid: change all instances of make-sm-column in make-md-column in _grid.scss (this file).

Thanks! Just what I needed