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?
Hi thecszone!
Try this out.
div .av_one_half {
margin-left: 2% !important;
width: 48% !important;
}
Cheers!
Elliott
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?
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
Works perfect. Thanks, Elliott!