Is there any chance to reduce blank space in widgets?
For me, they’re too high.
If you don’t understand – http://screenshooter.net/103162058/nrbkfjc I draw red arrows on space that I want to make smaller.
I would really appreciate any help π
This is only possible vis custom CSS. Here’s an example of code you should insert under Appearance → Theme Options → Design → Custom CSS:
@media (min-width: 768px) {
.design-full-screen .custom-sidebar {
padding-top: 40px;
padding-bottom: 40px;
}
}