Just a small code to change RSS Icon
Add to Custom CSS tab on Elfsight or your platform
- With WordPress, Appearance > Customize > Custom CSS (or Additional CSS) then clear browser cache/web cache
- With Squarespace, Website > Website Tools > Custom CSS
[data-app="eapps-rss-feed"] a[class*="SourceLink"]>div {
background-image: url(https://cdn.pixabay.com/photo/2023/08/18/16/15/stairs-8198875_1280.jpg);
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
[data-app="eapps-rss-feed"] a[class*="SourceLink"]>div svg {
display: none;
}
Replace Pixabay url with your icon url
Before
After