Media Player height

I have CSS to format a media player in my app. However, I would like one specific instance of the media player to have a larger height than 175px. The global CSS looks like this:

/* Make iono.fm iframes responsive */

iframe[src*="iono.fm"] {

width: 100% !important;

min-width: 100% !important;

height: 175px !important;

border: 0;

}

However, I want the media player in Scene_1 View_24 to have a height of 500px. How should I format the CSS?

Many thanks!

Hi @houwtama,

You should be able to add this below your existing CSS to override the height on that view:

#view_24 iframe[src*="iono.fm"] {
  height: 500px !important;
}

Many thanks @StephenChapman :ok_hand:

1 Like