Hi!
I´m looking for a way I could reduce the space between the widgets in the footer. You can see my web here: http://www.xprinta.com/
In the third, fourth and fifth column, I think the space between the different widgets “Text” is too big, and I would like to reduce it. There is a way to do that?
Thanks
Hey Sergio,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:
CSS Snippet:
#footer div .av_one_fifth:not(:first-child) {
margin-left: 3%;
width: 18.2%;
}
Best regards,
Yigit
Hi! Thanks for the quick answer
However, I see that the code is for the space between columns. What I want to change is the space between the different widgets in each column, in order to reduce the height of the footer.
Hey,
Sorry for misunderstanding, please use following code instead
#footer .widget {
margin: 5px 0;
}
Regards,
Yigit
Hi! Thanks, this code works fine! Is possible to get a little less space between each widget? Maybe changing the “5” in the code?