Edit image in RSS Audio Feed in the Audio feature.

How do I replace or add an image when using an RSS Audio Feed with the Audio feature?

If you would like to add an image, or hide an image in the Audio feature when using the RSS Audio Feed option, follow the steps below:

1) Log into your App Manager and select your app.

2) Click Colors from the left-hand-side of the screen (or the middle of the screen).

3) Scroll down to the Advanced SCSS box. If there is already code in the advanced SCSS box, do not remove it. Start a new line “after” the last character in the box, then paste the below code:

Hide Image

/*** START: AUDIO - HIDE RSS AUDIO LIST IMAGE ***/
[state="music-album-view"] .item.item-custom.item-avatar img {
display: none;
}
/*** END: AUDIO - HIDE RSS AUDIO LIST IMAGE ***/

Replace Image

/*** START: AUDIO - REPLACE RSS AUDIO LIST IMAGE ***/
[state="music-album-view"] .item.item-custom.item-avatar img {
content: url(https://99designs-blog.imgix.net/blog/wp-content/uploads/2017/12/attachment_54273989.jpg); /* Images Size Is 300x300 */
}
/*** END: AUDIO - REPLACE RSS AUDIO LIST IMAGE ***/