Hi,
The spacing between widgets on the frontage I would like to reduce.
I have used the below quick css as found in other threads which is changed spacing on other pages but not the home page.
.sidebar .widget {
margin-bottom: -30px;
}
.sidebar .widget {
margin-top: -30px;
Thanks
Hi,
That should do the trick on all pages
.sidebar .widget {
margin-bottom: 10px !important;
padding: 10px 0 10px 0 !important;
}
You can lower the 10px , but there is no need to go into negative numbers since, 0px in all 3 locations in the code above will do the trick.
Thanks,
Nick