Hi, how can I change the outline/border and the sharing icons color to – #2846aa. I want to keep the hover effect that gives each sharing option its own color, just to change the default color when there is no hover over them – http://screencast.com/t/tbnWUwYnSt
Thanks.
Hey DROR!
Please add following code to Quick CSS
.av-share-box * {
border-color: #2846aa!important;
}
li.av-share-link.av-social-link-mail {
border-left: none;
}
.av-share-box ul li:first-child {
border-left: 1px solid #2846aa;
}
Regards,
Yigit
Thanks, what about the icons themselves – http://screencast.com/t/U4BHD6mgCRv – Can I also make them the same Blue color as the outline?
Hi!
Yes, please add following code to Quick CSS as well
.av-share-box ul li a { color: #2846aa; }
Best regards,
Yigit
Added the code but the color remains the same as before.
Hi!
Please try changing the code to following one
.av-share-box ul li a { color: #2846aa !important; }
.av-share-box ul li a:hover { color: white !important; }
Cheers!
Yigit
Perfect. Thanks :)