Features widget: modify top and down margin

Hello,
I need to lower the size of the top and level margin of the Feature widget.
I suppose I can do it by adding CSS? what I have to write? Thx

Regards
Michel

Mi Michel

Yes, sure, I can help with custom CSS, please provide URL of the page and reference of the text you want to modify.

Regards

thank you

Because a Feature widget cannot have more than 3 icons I put a second Feature widget below to get 6 icons.
Now I need two lower the distance between the two widgets. So having a way to adjust the top and the bottom margins is a way to do it. Other suggestions are welcome

regards

Hi there

You can use this css code:

#block-14 > div > div > div:nth-child(2) > section {
    padding-top: 0px;
}
#block-14 > div > div > div:nth-child(1) > section {
    padding-bottom: 0px;
}

Regards