How to remove the outline around social icons? There is a white box around each one in our footer.
1 Like
Hi @Groupy!
Do I understand correctly that you want to remove the outline around the social icons in the footer block? If so, please add the following code in the app settings under Custom Code > Header section.
Make sure to replace footer1
in the code with the block ID of your footer block. The screenshot below shows where to find the block ID of a particular block, and where the custom code section is located in the app settings.
<style>
#footer1 .sw-border-width-xs {
border-width: 0px !important;
}
</style>
thanks, its still not working after entering the code.