• Columns are not staying centered on the page. The heading above the heading and text below the columns are centered, but the columns are floating to the left making everything off balanced. I’ve tried to correct it with css using margin:auto; and text-align:center; but cannot get it to work. Everywhere else on the site they are centered. Any idea what the problem might be?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Tom

    (@edge22)

    Try wrapping a container around the columns and giving it a width:

    <div class="my-container">
        Shortcodes in here
    </div>

    Then your CSS:

    .my-container {
        max-width: 800px;
        margin: 0 auto;
    }
    Thread Starter 1timothy412

    (@1timothy412)

    Thanks for the reply… I have tried this but it isn’t working. I know how to use css and html, and all the normal methods for centering things are not working (as mentioned previously), which is making me think it’s an issue with the plugin. Any ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Columns are not centered’ is closed to new replies.