My social links in the footer are showing green color after hovering, before it merges with the background color and becomes invisible.
Can anyone help me to make it active color green?
This is the store link : https://paintedparks.com
My social links in the footer are showing green color after hovering, before it merges with the background color and becomes invisible.
Can anyone help me to make it active color green?
This is the store link : https://paintedparks.com
Hey @Fayed_Bd
Follow these Steps:
<style>
li.list-social__item {
background: rgb(102, 158, 68) !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Hi @Fayed_Bd
.footer ul.footer-social-icons li {
background-color: green;
}
Hi @Fayed_Bd ![]()
The hover effect is using the same green as your background, which is why the icons seem to disappear. You can fix this by setting a different (or consistent) green for the hover state.
Go to Online Store > Themes > Edit code.
Open your main stylesheet (often called base.css or theme.css).
Scroll to the bottom and paste this code:
.footer__social a:hover svg path {
fill: #00a859; /* keeps icons green on hover */
}
This will keep your icons visible in green even when hovering.
If you’d prefer a darker green so it stands out even more, use this instead:
.footer__social a:hover svg path {
fill: #006400; /* dark green */
}
Your footer icons will stay green (or a darker green) when hovered, making them always visible against the background.
Best,
Expertrichaerd
Ecommerce expert & Shopify Partner
It’s worked, thanks.
Hi @Fayed_Bd
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance. If helpful, please like all posts.