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.
.cf_videoshare_referral {
display: none !important;
}
Thanks, Sanford. Sorry for the dumb question but where do I put that?
On Wed, Nov 2, 2016 at 2:45 PM, Sanford Whiteman <
In your stylesheet or local <style> tag.
Sorry - where do I find that? I'm using a template.
On Wed, Nov 2, 2016 at 3:09 PM, Sanford Whiteman <
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>
Thank you as always!
Sent from my iPhone