Reply To: adding buttons?

Home Forums Support adding buttons? Reply To: adding buttons?

Home Forums Support adding buttons? Reply To: adding buttons?

#192024
Tom
Lead Developer
Lead Developer

To center them, I would actually use HTML instead of the plugin.

Something like this:

<div class="centered-columns">
  <div class="grid-50 tablet-grid-50 mobile-grid-100">
    Text
  </div>
  <div class="grid-50 tablet-grid-50 mobile-grid-100">
    Text
  </div>
</div>

With this CSS:

.centered-columns {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}