Tribute Page | Side margins for xs viewport

Hello,

What can I do to put 15px margins on either side of the container in viewports less than <768px wide?

Or more specifically, I get margins at the 576px point using .col-sm-12, but would like to have at least 15px margin on either side of the container regardless of the viewport size.

Here’s the link to my code:

Thanks in advance!

In bootstrap, rows have a negative margin -15px. You can write CSS which would reset it like:
> .no-margin {

  margin: 0;
}

and then apply the no-margin class to a row you want to alter.

1 Like

That was it! Thanks, a-gromadski!