Shashank Shah
Shashank Shah

Reputation: 2167

Hide Youtube title and logo ( on right bottom ) on an embed

Goal :- Wants to hide logo and title both together.

I want to hide title and logo both together using youtube embaded.

<iframe src="https://www.youtube.com/embed/w5C7S0FlSyM?&modestbranding=1&showtitle=0&controls=0" frameborder="0"width="500" height="280"></iframe>

It shows

enter image description here

In above screenshot it shows title where i have set modestbranding=1 which means this parameter let me use a YouTube player that does not show a YouTube logo.

if i remove modestbranding=1 and set &showinfo=0 than it starts showing youtube logo at bottom right.

enter image description here

Now if i do &showinfo=1 it hides the youtube logo at right end corner but start showing title.

<iframe src="https://www.youtube.com/embed/w5C7S0FlSyM?&showinfo=1&showtitle=0&controls=0"frameborder="0"width="300"height="200</iframe>

enter image description here

I want to hide both title as well as Youtube logo at bottom right.

How can i do that ?

Any help ?

Thanks in advance!

Upvotes: 1

Views: 13593

Answers (1)

Jarred
Jarred

Reputation: 2014

This use to be controlled by the showinfo parameter, but it appears to now be deprecated with no replacement. https://developers.google.com/youtube/player_parameters?playerVersion=HTML5#showinfo

Upvotes: 0

Related Questions