Hello,
I have 4 footer columns and would like to adjust the space between them.
Example, I’d like column 2 closer to column 1 and column 3 closer to column 4.
How do I do that?
Thanks!
Hey sgaulton,
Columns 2, 3, and 4 each have a left margin of 6%. This is what you should adjust. To do that. please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
#footer > .container > .av_one_fourth:nth-child(2) {margin-left: 4%;}
#footer > .container > .av_one_fourth:n-thchild(3) {margin-left: 8%}
#footer > .container > .av_one_fourth:last-child {margin-left: 4%}
You can adjust the values to fit your preference. Just make sure that the numbers combined will not exceed 18. :) (For example, the margins can also be 3, 10, and 3).
I hope that helps! If you need further assistance, it would be best to provide a precise link to your site, showing the elements in question.
Best regards,
Sarah
Thanks Sarah!
This worked great :)