Re: Removing Social Share Buttons from YouTube embed element

Anonymous
Not applicable

Removing Social Share Buttons from YouTube embed element

I have a YouTube video embedded in a basic landing page: http://lp.rubiconmd.com/October_Office_Hours_Recording.html .

I don't want viewers to share this video - how do I remove those icons? I used the drap and drop video element.

6 REPLIES 6
SanfordWhiteman
Level 10 - Community Moderator

Re: Removing Social Share Buttons from YouTube embed element

.cf_videoshare_referral {

   display: none !important;

}

Anonymous
Not applicable

Re: Removing Social Share Buttons from YouTube embed element

Thanks, Sanford. Sorry for the dumb question but where do I put that?

On Wed, Nov 2, 2016 at 2:45 PM, Sanford Whiteman <

SanfordWhiteman
Level 10 - Community Moderator

Re: Removing Social Share Buttons from YouTube embed element

In your stylesheet or local <style> tag.

Anonymous
Not applicable

Re: Removing Social Share Buttons from YouTube embed element

Sorry - where do I find that? I'm using a template.

On Wed, Nov 2, 2016 at 3:09 PM, Sanford Whiteman <

SanfordWhiteman
Level 10 - Community Moderator

Re: Removing Social Share Buttons from YouTube embed element

You can add your own stylesheet in the <HEAD> of the template. I don't recommend this as it is impossible to maintain, but if you don't know where your styles are coming from it's going to be the easiest for you.

<HEAD>

     ... other stuff here ...

     <STYLE type="text/css">

       .cf_videoshare_referral { 

         display: none !important; 

       }

     </STYLE>

</HEAD>

Anonymous
Not applicable

Re: Removing Social Share Buttons from YouTube embed element

Thank you as always!

Sent from my iPhone