• Resolved Effortless Composition

    (@effortless-composition)


    Hello, I’ve gone through all of the support topics but no luck with this unfortunately. I am am trying to get rid of the large spacing between my columns on my home page. Through my search it seems i should be changing the margin bottom? I took a stab at this on the stylesheet (changed line 1633), but no luck.

    Could I please get some direction on where to go in my CSS files to change the column spacing on the builder page?

    See here- http://effortlesscomposition.com

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello,

    Please don’t edit the theme files directly as it will create a lot of issues in future. All your Customizations will lost when you update your theme and that may cause your site slow down on update. So please use Custom CSS field or plugin for adding your customization codes so that it will override the original CSS and also will be there after updates.

    Please try this in your Custom CSS for achieving that:

    .builder-section {
        margin-bottom: 0;
    }
    .builder-section:first-of-type {
        margin-bottom: 40px;
    }
    #builder-section-1415750339929-column-2 p:last-child {
        display: none;
    }
    #builder-section-1415752802-column-1 p:last-child {
        display: none;
    }
    #builder-section-1415752802-column-2 p:nth-child(5) {
        display: none;
    }

    Thank you.

    Thread Starter Effortless Composition

    (@effortless-composition)

    ah ha, thank you!

    That worked just fine.

    Anonymous User 9936702

    (@anonymized-9936702)

    Thanks for your help, @ Jitendra!

    You’re welcome @scott.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Spacing between Columns on builder page’ is closed to new replies.