1

I am using this you tube embed

<iframe id="ytplayer" style="box-shadow:0px 0px 5px black;"  type="text/html" width="100%" height="350" src="https://www.youtube.com/embed/<?php echo$youtube_video_id;?>?autoplay=1&showinfo=0&loop=0&modestbranding=1&rel=0" frameborder="0" allowfullscreen></iframe>

I want to remove youtube logo. So is there any way to block this image?

https://s.ytimg.com/yts/img/watermark_ringo-vflPWbiPS.png

this is image of player enter image description here

  • What have you tried? Please show us your attempt. – Script47 Sep 15 '17 at 13:17
  • 2
    Possible duplicate of [How to remove youtube branding after embedding video in web page?](https://stackoverflow.com/questions/18893902/how-to-remove-youtube-branding-after-embedding-video-in-web-page) – Scath Sep 15 '17 at 13:19

1 Answers1

0

You should add ?modestbranding=1 to the url to remove this logo.

Example:

<iframe width="560" height="315" src="https://www.youtube.com/embed/_K2cH74f8MU?modestbranding=1" frameborder="0" allowfullscreen></iframe>
Stephen Rauch
  • 47,830
  • 31
  • 106
  • 135
Jilu
  • 197
  • 1
  • 14