Hello,
Can you please try the below CSS and see if that helps.
.widget {
margin: 0 0 5px !important;
}
aside#block-5, aside#block-4 {
padding-bottom: 5px !important;
}
a.ti-header.source-Google {
padding: 0 !important;
}
Thanks.
Thread Starter
swevr
(@swevr)
That’s worked! but it appears to have shifted the search bar at the top of the page to the left a little. If i increase the number in the code you have provided, will that adjust the padding?
Ohh ok my bad, I didn’t check the search bar.
In my previous comment, I gave below CSS
.widget {
margin: 0 0 5px !important;
}
aside#block-5, aside#block-4 {
padding-bottom: 5px !important;
}
a.ti-header.source-Google {
padding: 0 !important;
}
Change that to below
#secondary .widget{
margin: 0 0 5px !important;
}
aside#block-5, aside#block-4 {
padding-bottom: 5px !important;
}
a.ti-header.source-Google {
padding: 0 !important;
}
Thread Starter
swevr
(@swevr)
That’s great. Thanks a lot!