Archived topic
Spacing between footerwidgets
4 replies · Started by Hans on January 13, 2017
Hi Tom,
I did not find a solution in the forums. It might be impossible without JavaScript. My problem ist to be seen on this
.
I want to have 20px between the footer widgets. But all CSS changes I tried ended up in displaying footer-3 below footer-2 on desktop. Tablet and mobile are okay.
Do you have a solution?
Hans
Hi Hans,
Any chance you can link me to your site so I can take a look?
Currently your CSS is:
.footer-widget-1, .footer-widget-2, .footer-widget-3 {
border-radius: 15px;
background-color: #f0f0f0;
padding: 20px;
margin: 0px;
}
It should work if you change it to:
.footer-widget-1 > aside,
.footer-widget-2 > aside,
.footer-widget-3 > aside {
border-radius: 15px;
background-color: #f0f0f0;
padding: 20px !important;
margin: 0px 5px;
}
Great, it works! Thank you!
You're welcome :)