Can you please share the CSS for changing the color of the text in “Share by Email?”
Hi tslofphoenix,
You can use the following rules
// to color the link
.sbe-share-link {
color: green
}
// to color the icon
.sbe-share-link svg path {
fill: green;
}
I hope this helps,
Lehel
Thank you so much for responding, but that didn’t work. I often find that that happens when dealing with Elementor unless there is a specific section in the plugin for placing CSS.
The lines I shared should work however I think your theme or elementor might be overriding it with a more specific CSS rule.
// to color the link
body a.sbe-share-link {
color: green
}
// to color the icon
body a.sbe-share-link svg path {
fill: green;
}
let me know if this works.
If not, send me a link to your public website where this displays.
Lehel
Hello, that CSS is the same as what you first gave me. It doesn’t work. You may be right; it probably has to do with Elementor. If I were using Elementor Pro, there is a place to put coding right into the plugin, but the free version does not have that option. Looks like I have to live with the current colors. Thank you for your time.
I had come errors in the /* comments. Once I fixed those, your coding worked. Thanks so much. 😀
I’m so glad to hear that. thank you for letting me know!