Reply To: Can I center multiple columns on a page?

Home Forums Support Can I center multiple columns on a page? Reply To: Can I center multiple columns on a page?

Home Forums Support Can I center multiple columns on a page? Reply To: Can I center multiple columns on a page?

#109271
Tom
Lead Developer
Lead Developer

This is always a tough one.

What you would have to do is wrap your columns in a container, and then give that container a max-width.

Then, set the left and right margin to auto.

For example, your HTML:

<div class="team-container">
      Team columns
</div>

Then your CSS:

.team-container {
      max-width: 90%;
      margin-left: auto;
      margin-right: auto;
}