Reply To: Section Side Paddings

Home Forums Support Section Side Paddings Reply To: Section Side Paddings

Home Forums Support Section Side Paddings Reply To: Section Side Paddings

#98581
Tom
Lead Developer
Lead Developer

Hi there,

I wanted to reduce the amount of options in each section (makes it save faster etc..).

Currently, the Sections take the left and right padding from the Element Spacing setting (default 40px).

To change this for specific sections, add a custom class to the section – for example: unique-section-class

Then you could do this:

.unique-section-class .generate-sections-inside-container {
      padding-left: 0;
      padding-right;
}

To make this change only on desktop (not mobile), you can do this:

@media (min-width: 769px) {
      .unique-section-class .generate-sections-inside-container {
            padding-left: 0;
            padding-right;
      }
}

Let me know if you need more info 🙂