Home Forums WoodMart support forum Change look of social share buttons? Reply To: Change look of social share buttons?

#133758

Hello,

Please add this code to the Theme Settings > Custom CSS > Global:

body .icons-design-default .woodmart-social-icon {
    padding: 10px 5px;
}
body.single .woodmart-social-icons i {
  display:block;
	padding:5px;
	color:white;
}
body.single .woodmart-social-icons i.fa-facebook {
background-color:blue;
}
body.single .woodmart-social-icons i.fa-twitter {
background-color:blue;
}
body.single .woodmart-social-icons i.fa-pinterest{
background-color:blue;
}
body.single .woodmart-social-icons i.fa-linkedin {
background-color:blue;
}
body.single .woodmart-social-icons i.fa-telegram {
background-color:blue;
}

Change the class of social icon fa-telegram as per your needs as well as the background colors.

Best Regards