video_comments.tpl? I'm going to try it....


yep, it's the video_comments.tpl

Look for:
Code:
<div class="float_l">{$comments[i].username}{insert name=time_range assign=stime field=addtime IDFR=COMID id=$comments[i].COMID tbl=comments} ({$stime})</div>
insert provided code above so that it looks like this:

Code:
<div class="float_l">[img]{$baseurl}/photo/{$comments[i].UID}.jpg[/img]{$comments[i].username}{insert name=time_range assign=stime field=addtime IDFR=COMID id=$comments[i].COMID tbl=comments} ({$stime})</div>
UPDATE

After some tinkering, I came up with this: (this is the entire video_comments.tpl code I am using--note that I have the "REPLY" removed--which you may want to keep on yours)

Code:
{if $links ne ''}<div class="comment_pagination_block">
<div style="padding: 0px 4px; margin-left:1em;">{$links}</div>
</div>{else}
{/if}{section name=i loop=$comments}<div class="comment">
<div class="comment_head" style="padding:0">[img]{$baseurl}/photo/{$comments[i].UID}.jpg[/img]
{$comments[i].username}{insert name=time_range assign=stime field=addtime IDFR=COMID id=$comments[i].COMID tbl=comments} ({$stime})
<div class="float_r"></div>
</div>
<div class="comment_body" style="padding:5px;">{$comments[i].commen}</div>
</div>{/section}{if $links ne ''}<div class="comment_pagination_block">
<div style="padding: 0px 4px; margin-left:1em;">{$links}</div>
</div>
{else}
{/if}