Template grid styling css question

0
Hi all, I’m trying to remove some padding from a template grid child row and I’ve identified the class and where the padding is being applied. I’m just looking for a bit of guidance to remove this for only this grid using the custom css file to call a class to remove it. Any help would be great  
asked
2 answers
1

For this grid in it's properties you need to assign it a classname: 

Then in the project's directory in /theme/styles/sass/custom.scss select it and make your required changes: 

.yourGridname{
  margin: 0px;
}

and after saving your change, generate your css files by having the sass compiler watching for sass changes:

sass --watch sass:css

 

answered
3

There is a templategrid-stylingless class which removed all padding and borders.

answered