Reply To: different content margin on full width no sidebar

Home Forums Support different content margin on full width no sidebar Reply To: different content margin on full width no sidebar

Home Forums Support different content margin on full width no sidebar Reply To: different content margin on full width no sidebar

#157556
Tom
Lead Developer
Lead Developer

Hi Are,

You could try something like this:

.no-sidebar .inside-article > * {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

Basically, it will target element that are a direct child of the inside-article element, and reduce their width to whatever you choose.

The auto margin on either side will center those elements.