Has anyone moved the "comments" portion? Right now it's near the bottom of the page and I'd like to move it closer to the top like maybe underneath the "video details"/"user details" or maybe underneath the "related tags" on the right hand side.

What code do you cut and paste and what .tpl do you do this on?

NVM I figured it out. It's on "view_video.tpl":

Code:
<A name=postcomment></A>

<DIV style="FONT-WEIGHT: bold; PADDING-BOTTOM: 5px; COLOR: #444" style="PADDING-left: 10px">Comment on this video:</DIV>

{if $smarty.session.UID ne "" and $isvideocommented ne "no"}
<DIV ID=divComments>

<FORM name="Add_comment" method="post" action="{$baseurl}/view_video.php?viewkey={$smarty.request.viewkey}&page={$smarty.request.page}&viewtype={$smarty.request.viewtype}&category={$smarty.request.category}">
<DIV id=div_main_comment style="PADDING-left: 10px">
<textarea name=addcomment ID=txtComments rows=5 cols=30></textarea>


<input type="button" name="commentpost" value="Post Comment" onClick=fxSendComments('divComments','txtComments',{$smarty.session.UID},{$VID})>
</DIV>
</FORM>

</DIV >
<DIV ID=divComResult1 style='display:none'>
<FONT COLOR=#339900>Your Comments has posted successfully.</FONT>
</DIV>
<DIV ID=divComResult2 style='display:none'>
<FONT COLOR=#FF0033>Your already posted comments on this video.</FONT>
</DIV>
{/if}


<TABLE width=372>
<TR>
<TD style="PADDING-left: 10px">

<TABLE class=commentsTitle width="96%">
<TR>
<TD style="PADDING-left: 10px">Comments ({$commentcount}): </TD>
</TR>
</TABLE>

</TD>
</TR>

<TR>
<TD style="PADDING-left: 10px">
<A name=commentview>
{insert name=comment_info assign=cominfo vid=$VID}
{section name=i loop=$cominfo}

<TABLE class=parentSection id=comment_6rk1N61CRTY style="MARGIN-LEFT: 0px" width="99%">
<TR vAlign=top>
<TD>{$cominfo[i].commen}
<DIV class=userStats>
{insert name=id_to_name assign=uname un=$cominfo[i].UID}
{$uname}//
{insert name=video_count assign=vdocount uid=$cominfo[i].UID}
Videos({$vdocount}) |
{insert name=favour_count assign=favcount uid=$cominfo[i].UID}
Favorites({$favcount}) |
Friends(1) -
{insert name=time_range assign=stime field=addtime IDFR=COMID id=$cominfo[i].COMID tbl=comments}
({$stime})
</DIV>
<DIV class=userStats id=container_comment_form_id_6rk1N61CRTY style="DISPLAY: none"></DIV>
<DIV class=userStats id=reply_comment_form_id_6rk1N61CRTY>
(Reply to this)
<DIV id=div_comment_form_id_6rk1N61CRTY></DIV>
</TD>
</TR>
</TABLE>

</A>
{/section}