Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #428583

    I have pages where I have used the Avia Layout Builder to place two 1/2 columns side by side. I want to narrow the margin between the two columns by moving the right column closer to the left. How do I do that in my custom CSS?

    #429207

    Hi thecszone!

    Try this out.

    div .av_one_half {
      margin-left: 2% !important;
      width: 48% !important;
    }

    Cheers!
    Elliott

    #429315

    This works great, Elliot, except it changes every page I am using columns on when I want it to apply only to specific pages. Is there a way for me to specify certain pages that it applies to or pages that are excluded?

    #429926

    Hi!

    Drag a codeblock element to your page and add this inside.

    <style type = "text/css">
    div .av_one_half {
      margin-left: 2% !important;
      width: 48% !important;
    }
    </style>

    Cheers!
    Elliott

    #429949

    Works perfect. Thanks, Elliott!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘1/2 column margins’ is closed to new replies.