Adding a podcast theme needs new color scheme

After adding the rss feed the podcast displays a white bg and grey text.

I’d like to darken the background and change all text to black.

I’d love to add an image to this section, is that possible?

Can you help please?

Hi Andy

Well, dark text on the dark bg is not the good idea, but aniway, here is the code:

.wp-block-jetpack-podcast-player .jetpack-podcast-player__header,
.wp-block-jetpack-podcast-player .jetpack-podcast-player:not(.has-background) {
background: #8698a4;
}
.wp-block-jetpack-podcast-player .jetpack-podcast-player__header,
.wp-block-jetpack-podcast-player .jetpack-podcast-player:not(.has-background) {
color: white;
}

I see the image is already added to this page?

That works really wel thanks, I’ve tweaked it a bit and its perfect thank you.

.wp-block-jetpack-podcast-player .jetpack-podcast-player__header,
.wp-block-jetpack-podcast-player .jetpack-podcast-player:not(.has-background) {
background: #8698a4;
}
.wp-block-jetpack-podcast-player .jetpack-podcast-player__header,
.wp-block-jetpack-podcast-player .jetpack-podcast-player:not(.has-background) {
color: black;
}
.wp-block-jetpack-podcast-player .jetpack-podcast-player__tracks,
.wp-block-jetpack-podcast-player .jetpack-podcast-player:not(.has-background) {
background: #8698a4;
}

That’s nice to hear Andy :slight_smile:

1 Like