Padding below the Social Widget in Sidebar

i want to eliminate the padding below my Social Widget in side Bar. Can you help me with this?
Thank You!

Hi @mohsin,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

#secondary .widget.sparkling-social {
    margin-bottom: 0;
}

If you want to remove more then also use the following CSS code.

.widget #menu-social ul {
    margin-bottom: 0;
}

Best Regards,
Movin