Hello, how can I make the social media icons larger in Debut theme?

Hello, how can I make the social media icons larger in Debut theme?

Try adding this code to the bottom of theme.scss.css

.social-icons__link svg {
    width: 130% !important;
    height: 130% !important;
}

Also, make sure to back up the original code, before making changes.

Thank you is this under assets? Also how do I back up the original code?

I added this to the theme.css file and it completely blew them out of proportion. I had to delete this code?

@StitchBeyond

Try this code, it works on my default theme.

.social-icons__item .social-icons__link svg {
    width: 2.5em ;
    height: 2.5em;
}
1 Like

@Nick_Marketing Perfect! It worked thank you :slightly_smiling_face:

@StitchBeyond

Thanks for the update!