I am having issues trying to get the youtube videos to size correctly. I am replacing the "$ameinfo[height]" with the one I want because the default zone settings are not working either and yes I uploaded the delta definitions and never installed the 3rd times a charm. Can someone please help me with this. This is what I have tried so far.
Code:
<object width="$ameinfo[425]" height="$ameinfo[350]">
<param name=''movie'' value="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="$ameinfo[350]" height="$ameinfo[425]" wmode="transparent"></embed></object>
Code:
<object width="$ameinfo[425px]" height="$ameinfo[350px]">
<param name=''movie'' value="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="$ameinfo[350px]" height="$ameinfo[425px]" wmode="transparent"></embed></object>
No "$ameinfo[height]"
Code:
<object width="425" height="350">
<param name=''movie'' value="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="350" wmode="transparent"></embed></object>
No $ameinfo[height] with px added.
Code:
<object width="425px" height="350px">
<param name=''movie'' value="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="350px" height="425px" wmode="transparent"></embed></object>
What am I doing wrong?