I see ‘panel-grid’ and ‘panel-grid-cell’ as the parts to be adjusted for doing that, but I doubt that will be simple and these wordpress.org forums offer support only for themes from wordpress.org. So, you might begin by contacting the author of your theme: http://support.tyler.com/
I have tried contacting author but no luck whatsoever.
the panel-grid moves the circles but doesnt make the page height shorter…
If you might be able to find a similar theme from here at wordpress.org, each theme has its own sub-forum open for anyone here to volunteer to help.
Hi,
Try the following CSS;
.home .entry-content .panel-grid {
margin-bottom: 0px !important;
}
.home .entry-content .panel-grid .textwidget {
padding-bottom: 0px !important;
}
Hope this helps
That works perfectly to adjust the top. any idea on how to fit the bottom?
Hi,
It’s a little awkward.
But try this.
.home .entry-content div.so-panel.widget {
padding-top: 20px !important;
margin-bottom: -10px !important;
}
Hope this helps
Absolutely perfect, thank you very much!
🙂