Hello,
On all our pages the new feature 'Recent Products' we have a table showing HTML above the recent products.
CSS issue?
Have tried using this post:-
http://community.actinic.com/showthread.php?t=47459
http://www.smartpackagingstore.co.uk/index.html
code that is showing:-
**sRecentPrefix** <!-- Prefix to Horizontal recent item list HTML -->
<br/><br/>
<div class="recenththeader">
<input class="recenthtbuttonright" id="scrollbackrecent" type="button" value=" Next >>" onclick="ScrollBackRecent();">
<input class="recenthtbuttonleft" id="scrollforwardrecent" type="button" value="<< Previous" onclick="ScrollForwardRecent();">
<div style="text-align:center">Recently Viewed</div>
</div>
<br clear="all"/>
<table cellspacing="0" id="recenthtitem">
**sRecentImageRowPrefix** <!-- Prefix to image row -->
<tr><td class="recenthtitemspacer" rowspan=4> </td>
**sRecentImageItem** <!-- Image item -->
<td class="recenthtitemimage">
<a _HREF_="_SSURL_?PRODREF=_PID_&NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&SHOP=<actinic:variable name="ShopID" /></actinic:block>" >
<img border="0" width="75" src="_THUMB_" alt="_NAME_" />
</a>
</td>
<td class="recenthtitemspacer" rowspan=4> </td>
**sRecentImageRowSuffix** <!-- Suffix to image row -->
</tr>
**sRecentDescRowPrefix** <!-- Prefix to Description row -->
<tr>
**sRecentDescItem** <!-- Description item -->
<td class="recenthtitemdesc"><a _HREF_="_SSURL_?PRODREF=_PID_&NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&SHOP=<actinic:variable name="ShopID" /></actinic:block>" >_NAME_</a></td>
**sRecentDescRowSuffix** <!-- Suffix to Description row -->
**sRecentPriceRowPrefix** <!-- Prefix to Price row -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22RecentlyViewedListShowFullRetailPrice%22%20%2f%3e" ><tr></actinic:block>
**sRecentPriceItem** <!-- Price item -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22RecentlyViewedListShowFullRetailPrice%22%20%2f%3e" ><td class="recenthtitemprice">_PRICE_</td></actinic:block>
**sRecentPriceRowSuffix** <!-- Suffix to Price row -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22RecentlyViewedListShowFullRetailPrice%22%20%2f%3e" ></tr></actinic:block>
**sRecentDeleteRowPrefix** <!-- Prefix to Delete row -->
<tr>
**sRecentDeleteItem** <!-- Delete button -->
<td class="recenthtitemdelete">
<a href="javascripteleteRecent('_PID_', true);">
<img src="xit.jpg" border="0" />
</a>
</td>
**sRecentDeleteRowSuffix** <!-- Suffix to Delete row -->
</tr>
**sRecentSuffix** <!-- Suffix to Horizontal recent item list HTML -->
</table>
**sRecentEmptyList** <!-- Code for empty list -->
On all our pages the new feature 'Recent Products' we have a table showing HTML above the recent products.
CSS issue?
Have tried using this post:-
http://community.actinic.com/showthread.php?t=47459
http://www.smartpackagingstore.co.uk/index.html
code that is showing:-
**sRecentPrefix** <!-- Prefix to Horizontal recent item list HTML -->
<br/><br/>
<div class="recenththeader">
<input class="recenthtbuttonright" id="scrollbackrecent" type="button" value=" Next >>" onclick="ScrollBackRecent();">
<input class="recenthtbuttonleft" id="scrollforwardrecent" type="button" value="<< Previous" onclick="ScrollForwardRecent();">
<div style="text-align:center">Recently Viewed</div>
</div>
<br clear="all"/>
<table cellspacing="0" id="recenthtitem">
**sRecentImageRowPrefix** <!-- Prefix to image row -->
<tr><td class="recenthtitemspacer" rowspan=4> </td>
**sRecentImageItem** <!-- Image item -->
<td class="recenthtitemimage">
<a _HREF_="_SSURL_?PRODREF=_PID_&NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&SHOP=<actinic:variable name="ShopID" /></actinic:block>" >
<img border="0" width="75" src="_THUMB_" alt="_NAME_" />
</a>
</td>
<td class="recenthtitemspacer" rowspan=4> </td>
**sRecentImageRowSuffix** <!-- Suffix to image row -->
</tr>
**sRecentDescRowPrefix** <!-- Prefix to Description row -->
<tr>
**sRecentDescItem** <!-- Description item -->
<td class="recenthtitemdesc"><a _HREF_="_SSURL_?PRODREF=_PID_&NOLOGIN=1<actinic:block if="%3cactinic%3avariable%20name%3d%22IsHostMode%22%20%2f%3e">&SHOP=<actinic:variable name="ShopID" /></actinic:block>" >_NAME_</a></td>
**sRecentDescRowSuffix** <!-- Suffix to Description row -->
**sRecentPriceRowPrefix** <!-- Prefix to Price row -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22RecentlyViewedListShowFullRetailPrice%22%20%2f%3e" ><tr></actinic:block>
**sRecentPriceItem** <!-- Price item -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22RecentlyViewedListShowFullRetailPrice%22%20%2f%3e" ><td class="recenthtitemprice">_PRICE_</td></actinic:block>
**sRecentPriceRowSuffix** <!-- Suffix to Price row -->
<actinic:block if="%3cactinic%3avariable%20name%3d%22RecentlyViewedListShowFullRetailPrice%22%20%2f%3e" ></tr></actinic:block>
**sRecentDeleteRowPrefix** <!-- Prefix to Delete row -->
<tr>
**sRecentDeleteItem** <!-- Delete button -->
<td class="recenthtitemdelete">
<a href="javascripteleteRecent('_PID_', true);">
<img src="xit.jpg" border="0" />
</a>
</td>
**sRecentDeleteRowSuffix** <!-- Suffix to Delete row -->
</tr>
**sRecentSuffix** <!-- Suffix to Horizontal recent item list HTML -->
</table>
**sRecentEmptyList** <!-- Code for empty list -->
Comment