Can I customize Vimeo's HTML and CSS attributes? I have a video that autoplays and I don't want the play button.
I want to modify this specific class.
.a.l .b .as {
position: absolute;
top: 50%;
left: 50%;
margin: -2em 0 0 -3.25em;
float: none;
z-index: 3;
}
I also want to include display:none;
in this class.
Expanding on Jonathan Sampson's suggestions, is it feasible:
$(document).ready(function() {
$("iframe#vim").contents().find('.as.av').hide();
});