Thread: resize youtube
View Single Post
  #4  
Old 04-26-2008, 10:13 AM
  kube's Avatar 
kube kube is offline
 

X-Adept
  
Join Date: Sep 2005
Location: London: a small place East of Wales
Posts: 529
 

Default Re: resize youtube

Well I assume you've hard coded the dimensions into the tpl, and the embed tag has dimensions included in it too...

So either edit (which is the cleanest way)...
<embed width="425" height="355"
to
<embed width="150" height="125"


Or the css to override it like you want...

.object embed {
height:125px;
width:150px;
}


Hope this helps.
__________________
Doms
kube v4.1.9
Reply With Quote