Hover color of social icons

Hi,

I want to change the hover color of each of the social icons.

What css code I have to put in custom scc section?

Here is my url http://ruseflowers.com

Thanks!

Add this code to Theme Options - Other - Custom CSS and change color code to one that you like to use. This code will work for Twitter and Google Plus but you can use the same pattern to change color for all items as well. This will allow to change color on hover for individual items:

.social_icon.fa.fa-twitter:hover {
	color: #fff;
}
.social_icon.fa.fa-google-plus:hover {
	color: #fff;
}

If you want to change social icon color on hover for all social icons at once you can use this code instead.

.social-profile:hover {
	color: #111;
}

Thank you very much for the help,

It worked just fine!

p.s. it’s fa-google-plus

Oh, sorry about that. Didn’t double check it but good that you get the idea.