The following changes will give you the look of how I did my video listings: (completely optional!)
REPLACE your "
video_home" template with the following:
HTML Code:
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="2">8WayRun.Com Video Directory Uploading Guidelines</td>
</tr>
<tr>
<td class="alt1" colspan="2">We have just added support for YouTube High Definition! This is <em>not</em> an automatic process, so you must conciously make the decision to add the HD version of your video into the directory. If you have a YouTube HD Video, simply add <strong><font color="red">fmt=22&</font></strong> before the <strong>v=</strong> in your link when you are submitting your video. You should never invoke this setting for videos that were not uploaded in HD, as you will break playback of the video.<br />
<br />
So <strong>youtube.com/watch?v=uXHZzyujkqE</strong> becomes <strong>youtube.com/watch?<font color="red">fmt=22&</font>v=uXHZzyujkqE</strong></td>
</tr>
</table>
<br />
<if condition="$vboptions['videodirectory_limits']['recent']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="3">$vbphrase[recent_videos]</td>
</tr>
<if condition="!$recentbits">
<tr>
<td class="alt1" colspan="2">$vbphrase[there_are_no_videos_to_display]</td>
</tr>
</if>
$recentbits
</table>
<br />
</if>
<if condition="$vboptions['videodirectory_limits']['top_rated']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="3">$vbphrase[top_rated_videos]</td>
</tr>
<if condition="!$top_ratedbits">
<tr>
<td class="alt1" colspan="2">$vbphrase[there_are_no_videos_to_display]</td>
</tr>
</if>
$top_ratedbits
</table>
<br />
</if>
<if condition="$vboptions['videodirectory_limits']['most_viewed']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="3">$vbphrase[most_viewed_videos]</td>
</tr>
<if condition="!$most_viewedbits">
<tr>
<td class="alt1" colspan="2">$vbphrase[there_are_no_videos_to_display]</td>
</tr>
</if>
$most_viewedbits
</table>
<br />
</if>
REPLACE your "
video_category" template with the following:
HTML Code:
<if condition="$show['catdesc']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%"><strong>$catinfo[title]</strong> <span class="smallfont">$catinfo[description]</span></td>
</tr>
</table>
<br />
</if>
<if condition="$show['newvideo']">
<if condition="is_browser('ie')">
<div style="margin-bottom: 1px" align="$stylevar[left]">
<else />
<div style="margin-bottom: 4px" align="$stylevar[left]">
</if>
<a href="video.php?$session[sessionurl]do=addvideo&categoryid=$catinfo[videocategoryid]"><img src="$stylevar[imgdir_button]/newvideo.gif" alt="$vbphrase[add_video]" title="$vbphrase[add_video]" border="0" /></a>
</div>
</if>
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" colspan="3">
<phrase 1="$catinfo[title]">$vbphrase[videos_in_category_x]</phrase>
</td>
</tr>
<if condition="!$videobits">
<tr>
<td class="alt1" colspan="3">
$vbphrase[there_are_no_videos_to_display]
</td>
</tr>
</if>
$videobits
</table>
$pagenav
<if condition="$show['newvideo']">
<div style="margin-top: 4px" align="$stylevar[right]">
<a href="video.php?$session[sessionurl]do=addvideo&categoryid=$catinfo[videocategoryid]"><img src="$stylevar[imgdir_button]/newvideo.gif" alt="$vbphrase[add_video]" title="$vbphrase[add_video]" border="0" /></a>
</div>
</if>
REPLACE your "
video_bit" template with the following:
HTML Code:
<tr>
<td class="alt2" width="1%" align="center"><a href="$video[url]"><img src="$video[thumbnailpath]" alt="$video[title]" title="$video[title]" style="height: 54px;" border="0" /></a></td>
<td valign="top" class="alt1">
<div class="smallfont">
<span style="float: $stylevar[right]; text-align: right;">
<small><a href="$video[caturl]">$video[cattitle]</a></small><br />
$video[date]<br /><span class="time">$video[time]</span><br />
$vbphrase[by] <a href="member.php?$session[sessionurl]u=$video[userid]">$video[musername]</a>
</span>
<strong>
<if condition="$video[videoservice]=='YouTubeHD'"><span style="color: #FF0000;">HD</span></if>
<a href="$video[url]">$video[title]</a><br />
<span class="smallfont">$video[description]</span>
</strong>
</div>
</td>
<td class="alt2" width="1%" align="center">
<img class="inlineimg" src="$stylevar[imgdir_rating]/rating_$video[rating].gif" border="0" /><br />
<span class="smallfont"><small>$vbphrase[views]</small></span><br />
<big><strong>$video[views]</strong></big>
</td>
</tr>