5638952 Posted October 5 Posted October 5 Title says it all, I'm on Harris Ingram and I'm trying to change the color of each individual social icon in the footer so they're all different colors (Facebook, Instagram, Email link). I'd also like a different hover color than the non-hover color (IE, if regular icon is light blue, I'd like hover to be dark blue) . I figured out how to change the color, but I can't figure out how to change them to individual colors for each social icon. Also, as soon as I hover, they go back to black with a gray hover on the hovered icon. URL: https://azalea-bullfrog-8m3w.squarespace.com/ PW: testing Thanks!
tuanphan Posted October 6 Posted October 6 You can use this to Website Tools > Custom CSS div#block-f0658470f5c86ed7d4b5 { a:nth-child(1) .sqs-use--mask { fill: #f1f; } a:nth-child(2) .sqs-use--mask { fill: green; } a:nth-child(3) .sqs-use--mask { fill: #000; }} Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
5638952 Posted October 6 Author Posted October 6 (edited) 2 hours ago, tuanphan said: You can use this to Website Tools > Custom CSS div#block-f0658470f5c86ed7d4b5 { a:nth-child(1) .sqs-use--mask { fill: #f1f; } a:nth-child(2) .sqs-use--mask { fill: green; } a:nth-child(3) .sqs-use--mask { fill: #000; }} This mostly worked, thank you! Do you know how to add in a hover color that's unique to each icon too? Edited October 6 by 5638952
tuanphan Posted October 7 Posted October 7 (edited) 14 hours ago, 5638952 said: This mostly worked, thank you! Do you know how to add in a hover color that's unique to each icon too? You can use new code like this div#block-f0658470f5c86ed7d4b5 { a:nth-child(1) .sqs-use--mask { fill: #f1f; } a:nth-child(1):hover .sqs-use--mask { fill: #fff; } a:nth-child(2) .sqs-use--mask { fill: green; } a:nth-child(2):hover .sqs-use--mask { fill: red; } a:nth-child(3) .sqs-use--mask { fill: #000; } a:nth-child(3):hover .sqs-use--mask { fill: #f1f; }} Edited October 7 by tuanphan Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment