0
Luc Van Cappellen
Hi, I want to increase the space between accordions (or 'containers').
How can I do this?
2 Subscribers
Submit Answer
1 Answers
Best Answer
0
Welcome to our forum.
Please see there is an option "Container options"
you can use padding, you can use top and bottom padding,
50px 10px
top & bottom:50px
left & right: 10px
you can follow general css rule: 10px 10px 10px 10px
top bottom right left
http://imgur.com/a/a3EDv
Also please note if you are using container background image or color then padding might not the best solution. you can use the container margin
.accordions { margin: 50px 0; }
Let me know for more help.
Regards
That's it!
Thank you!