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!