Increase size of social icons in widget

Hi,

I was playing around with the look of the social icons in the widget

I centered them using this code which works fine.

.widget_wpcom_social_media_icons_widget ul {
display: table;
margin: 0 auto;
}

I would like to increase the size of them thoughh as well and have tried usin this code.
font-size: 30px

If I use this code, the icons aren’t centered anymore, how can I achieve that?

Thanks for your help!

Hi @dorohenrietta,

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

Could you please share me your site URL where it’s displaying so that i can help you to achieve it?

Kind Regards,
Movin

Dear Movin,

my URL is www.dorohenrietta.com

Thanks for your help!

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

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

#secondary .widget_wpcom_social_media_icons_widget a {
    font-size: 30px;
}
#secondary .widget_wpcom_social_media_icons_widget li {
    border-bottom: 0;
}