Home › Forums › WoodMart support forum › How do I change the color and order of the social icons? › Reply To: How do I change the color and order of the social icons?
November 8, 2023 at 6:12 pm
#510917

Elise Noromit
Member
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.wd-social-icons {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
}
.wd-social-icons .wd-social-icon {
order: 10;
}
.wd-social-icons .social-linkedin {
order: 1;
}
.wd-social-icons .social-youtube {
order: 2;
}
Best Regards