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?

#510917

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