FYI, it is possible to style each icon so that it’s a different color, using your CSS file. Here’s an example: I wanted the colors to show up on hover, so this is what I placed in my CSS file.
/* Simple Social Icons
------------------------------------------------------------ */
.social-gplus a:hover {
background-color: #DD4B39 !important;
}
.social-linkedin a:hover {
background-color: #006599 !important;
}
.social-pinterest a:hover {
background-color: #C8232C !important;
}
.social-rss a:hover {
background-color: #F78C1A !important;
}
.social-twitter a:hover {
background-color: #1AB2E8 !important;
}
@satomom – thanks for posting a solution. You might be able to use #wrap to eliminate the !important. Ex
#wrap .social-gplus a:hover {
Thanks, Ron — yes, that worked! I appreciate the tip.