How to Customize Radio Player CSS for Player Info and Playlist Elements?

I’d like to ask about customizing the CSS for the radio player.
Specifically, I want to adjust the image and text sizes in the Player Info section,
as well as the image and text sizes in the Playlist section.

Hey there, @Shane_Shimizu :waving_hand:

The devs provided a CSS code for your request:

/*Player Info section image*/
[class*='Full__InfoContainer-sc'] [class*='ImageContainer-sc'] {
  width: 100px;
  height: 100px;
}

/*Station Info section*/
[class*='PlaylistItemInfoContainer-sc'] [class*='ImageContainer-sc'] {
  width: 50px;
  height: 50px;
}

Add it to the Style→ Custom CSS section and feel free to adjust both width and height to suit your needs :smiling_face:

1 Like