Nevermind, I fixed it myself by changing the custom replacement from
this
Code:
<div style="text-align: center;">
<table summary="table" class="tborder" align="center" border="0" cellpadding="6" cellspacing="1" width="__videow__" style="margin: auto;">
<thead>
<tr>
<td class="tcat" colspan="2">
<a __videohref__>__videot__</a>
</td>
</tr>
</thead>
<tbody>
<tr height="__videoh__">
<td class="alt1">
<div id="__videoe__">
</div>
</td>
</tr>
</tbody>
</table>
</div>
To this:
Code:
<div style="text-align: left;">
<table summary="table" class="tborder" align="left" border="0" cellpadding="6" cellspacing="1" width="__videow__" style="margin: auto;">
<thead>
<tr>
<td class="tcat" colspan="2">
<a __videohref__>__videot__</a>
</td>
</tr>
</thead>
<tbody>
<tr height="__videoh__">
<td class="alt1">
<div id="__videoe__">
</div>
</td>
</tr>
</tbody>
</table>
</div>