Page 1 of 1

**SOLVED**Add Border to youtube video

Posted: Sun Dec 22, 2019 11:41 pm
by derold
WB 6-7-8-9-10-12-15
I am trying to add a border around a youtube video.
<style>
#YouTube1
{border: solid #4cbfb5 10px;}
</style>

What am I doing wrong?

It works when I manually add it to the page.

Code: Select all

<!doctype html><html><head>
<meta charset="utf-8">
<title>Untitled Page</title>
<meta name="generator" content="WYSIWYG Web Builder 12 - http://www.wysiwygwebbuilder.com">
<style>body{background-color:#FFFFFF;color:#000000;font-family:Arial;font-weight:normal;font-size:13px;line-height:1.1875;margin:0;padding:0;}</style>
<style>a{color:#0000FF;text-decoration:underline;}a:visited{color:#800080;}a:active{color:#FF0000;}a:hover{color:#0000FF;text-decoration:underline;}</style>
<style>#YouTube1{border: solid #4cbfb5 10px;}</style>
</head><body>
<div id="wb_YouTube1" style="position:absolute;left:242px;top:273px;width:358px;height:201px;z-index:0;">
<iframe id="YouTube1" src="https://www.youtube.com/embed/Es5sDrVRyuI?rel=1&amp;autoplay=1&amp;autohide=0"></iframe></div></body></html>

Re: Add Border to youtube video

Posted: Mon Dec 23, 2019 12:17 am
by BaconFries
What am I doing wrong?
I don't think you are doing anything wrong. From what I understand borders are no longer supported and are now deprecated. See the following reading from-
March 29, 2012
The border, color1, egm, hd, and showsearch parameters, which are all only supported for the deprecated AS2 Player API

https://developers.google.com/youtube/p ... Parameters

Re: Add Border to youtube video

Posted: Mon Dec 23, 2019 12:47 am
by crispy68
I assume you are using the YouTube object in WB?

If so, click on Page --> Page HTML --> Between <head></head> tags and enter:

Code: Select all

<style>
#YouTube1{border:10px solid #4cbfb5;}
</style>

Re: Add Border to youtube video

Posted: Mon Dec 23, 2019 5:13 am
by derold
WOW THANK YOU!!!! That works! COOL!!!!!
Thanks "crisoy68"

Re: **SOLVED**Add Border to youtube video

Posted: Mon Dec 23, 2019 7:13 pm
by Williams
AMAZING Crispy. Thank you :wink:
Very Simple.. Very easy tip..