I retrieve embed code videos from my database. However, in db they are 650 x 650. What I want is making them small.
with template lite tag, I tried this
<tr>
<td>Videos</td>
<td>
<div height="100" width =" 200" />
{foreach value=movieF from=$movieFragman}
{$movieF.embedCode}
{/foreach}
</div>
</td>
</tr>
but div does not work. What can I do for that?
With below code , i set the width height of div
</style><style type="text/css">
{literal}
div.embed
{
width:200px;
height:100px;
}
{/literal}
</style>
this happens..

It’s work