I have the following page: http://www.alessandrosantese.com/test/aldemair-productions/
I would like to remove the bottom youtube logo, this is what I have so far:
            function onYouTubeIframeAPIReady() {
                player = new YT.Player('player', {
                    height: '390',
                    width: '640',
                    videoId: 'r8ZJ-4A1rxY',
                    playerVars: { 
                        'autoplay': 0,
                        'controls': 0, 
                        'rel' : 0,
                        'showinfo': 0,
                        'modestbranding': 1,
                        'fs': 0
                    },
                    events: {
                        'onReady': onPlayerReady
                    }
                });
            }
the logo is still there as you can see.