I am using a plugin to show my videos in RSS. I am using a new theme that is responsive and it requires the media settings in WordPress to stay at 9999 height and 580 width. As you can see from this link, it is stretching my videos WAY long. I really need to get this fixed as I have almost 200 videos on my site that look like this now. I’m sure there is a way to fix this with CSS. Anyone have any ideas?
Thanks.
Here is the link: http://noahsdad.com/exercise-ball/
Thanks to the fact that the plugin is setting the height as an attribute rather than an inline style, this simple CSS rule should fix the problem
iframe[height="9999"] { height: 320px; }. I assumed that by320you meant320px.