Goran theme – How to reduce the white space columns between widgets
-
I’m using the Goran theme and would like to reduce the white space columns between widgets.
The blog I need help with is: (visible only to logged in users)
-
Hi, for the footer widget area, add the following to your custom CSS and see what you think. This is a bit complex as you have to remove from the right margin, divide that number in two and then add that to the width of the footer-widget, and you have to calculate that for two different media queries.
@media screen and (min-width: 1230px) { .footer-widget { width: 328px; } } @media screen and (min-width: 1020px) { .footer-widget { margin-right: 50px; width: 258px; } }
- The topic ‘Goran theme – How to reduce the white space columns between widgets’ is closed to new replies.