After researching a solution on a website, I attempted to implement it but encountered issues. It seems like there may be another script dictating the styling, so I need to add some code directly to the page to override it.
This is what I tried:
<script type="text/javascript">
$(document).ready(function () {
$("#frame1").width(578);
$("#frame1").height(326);
});
</script>
Despite my efforts, the rendered HTML continues to display the following:
<iframe frameborder="0" src="http://player.vimeo.com/video/20657168?color=fc030f" style="width: 500px; height: 281.25px;"></iframe>
I am aiming for the width
to be 578
and the height
to be 326
. You can find the website at this link:
P.S. When attempting to add a class or ID, it gets removed from the HTML due to the platform being used (Tumblr).