Remove watch on YouTube logo on video

html, youtube

Solution

As far as I know, the most you can do is to add the `modestbranding=1` option to the URL, but this only gets rid of the title and youtube link on the top of the player.

I don't think you can get rid of the bottom right one that appears when you hover.

Source: https://developers.google.com/youtube/player_parameters#modestbranding

Problem

I have looked around the internet for a method to remove the YouTube logo from their iFrame player. I am using ``` <iframe width="550" height="314" src="https://www.youtube.com/embed/vidid?modestbranding=1&amp;rel=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe> ``` which removes the 'watch on YouTube' button from the bottom actions panel however it adds the YouTube logo watermark to the bottom right of the video and when I hover over it says watch on YouTube. I have tried changing 'embed' to 'v' which removes it but then it doesnt work on iPad/phone. Any suggestions?

Original source