Search code examples
htmlcsstwitter-bootstrapiframevimeo

Hide vimeo play bar in bootstrap


I'm trying to find out how to hide the play bar in bootstrap for a vimeo embed.

Here's the bootply

I tried doing it based off this guy's code

But I had no luck getting it to work within bootstrap.


Solution

  • you can just use css to do this.

    To hide the controls I just added a display none to the controls div

     div.controls {
         display: none;
     }
    

    You can do specific controls just as just the progress bar or just the play button. It's all up to you.