Hmm, you haven't followed my suggestion. You moved the id="trueContainer", but you moved it to another location entirely than suggested by my post. I don't know how to be much clearer though, except to say it should have been moved to here:
Code:
<div id="motioncontainer" style="position:relative;overflow:hidden; ">
<div id="motiongallery" style="position:absolute;left:0;top:0;white-space: nowrap;">
<nobr>
<!-- also_purchased_products //-->
<table border="0" width="100%" cellspacing="0" cellpadding="1" class="infoBox">
<tr>
<td><table id="trueContainer" border="0" width="100%" cellspacing="0" cellpadding="4" class="infoBoxContents">
around line #153, not here:
Code:
<!-- header_eof //-->
<!-- body //-->
<table border="0" style="width: 800px; margin:auto;" cellspacing="3" cellpadding="3" id="trueContainer">
<tr>
<td width="0%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2">
<!-- left_navigation //-->
around line #80 where you have put it. Remove it from there, and place it where I originally suggested. The concept involved is that we want it on the one innermost element who's width reflects the width of the image train, and only on that one element. You might think that is the <tr>, but experience has shown me that when modifying the markup like you have, it is the innermost table.
Bookmarks