first time poster, looking forward to getting involved.
I'm trying to embed a video from a private hosting service (I work for a university) into our website and I'm having trouble making it responsive. Unlike a Youtube or Vimeo video, the height and width seem to be defined in the "src" as shown:
<iframe width="640" height="385" src="http://videolibrary.sheffield.ac.uk/player?autostart=n&fullscreen=y&width=640&height=385&videoId=6432&quality=hi&captions=n" frameborder="0" scrolling="no"></iframe>
I've managed to fix this quite simply with a Youtube video before by using the following CMS (and placing the embed code within the appropriate div)
<style type="text/css">
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}</style>
however this just isn't working here. I cannot find a way to edit the embed code and I can't find any tips anywhere that work with this. If anyone has any ideas I would be very grateful!