Altering the Sage Grid

I wanted to change the sage grid main class to 10 with offset of 1 when the sidebar isn’t displaying…

What have you tried?

i have replaced the main class with “col-sm-10 col-sm-offset-1” am new to sass

There are lots of good primers on SASS out there and many use Bootstrap as an example. Please Google in future.

If you look in assets/styles/components/_grid.scss you will see how we use the columns mixins. For reference, offsets can be created with @include make-sm-column-offset(1);

1 Like