Hi,
How can I reduce the spacing that is created using the layout builder. Take a look at these two pages. The first is build using the default wordpress editor and the second made using the avia layout builder. I want to reduce the spacing the layout builder creates by default
http://www.theattractiveman.com/homepage/
Thanks
Hi,
You can reduce the padding of the content div.
.content {
padding-top: 10px;
padding-bottom: 10px;
}
Regards,
Ismael
Thank you for your help.
That change seems to adjust the margins above and below a “color section layout element”. How can I reduce the spacing between the content elements? For example, reduce the spacing between the text block
where it says “learn secrets of attracting…” and the pictures below it.
http://www.theattractiveman.com/homepage/
Thanks.
Hey!
add this to your custom.css stylesheet in folder /css/ or to the quick-css panel located in your wordpress backend at Enfold->Styling:
body .column-top-margin{
margin-top: 10px;
}
that should to the trick :)
Yes it did. Thank you.