Hello,
I would like to reduce the amount of padding between the widgets in the right sidebar. I have seen a few forum posts with CSS that you have suggested but none of them have worked for me. I use the Dev tools in Chrome to see the CSS and I have tried to target the widgets a few different ways but nothing works. The only way I could get anything to move was to use negative value margin which didn’t seem like a good idea here.
Will you please take a look at the page here and suggest a solution?
Thank you very much!
C
Hey Chnine!
Can u please create a screenshot of what you want to move and how, so we can create it. I can not understand exactly where you need the space and how much should that be
Regards,
Basilis
Hi Basilis,
Thank you so much for your response. I took another look at this and figured out the CSS for it. For what it’s worth, it was to target the top sidebar widget bottom-padding and the bottom widget’s top-padding:
/* reduces white space between top sidebar widget and donate button on home page */
div#text-11 {
padding-bottom: 0;
}
/* reduces white space between sidebar widget donate button and email signup form on home page */
div#text-6 {
padding-top: 20px;
}
Now all three widgets are spaced better visually. Case closed :-)