Hi all
We've got a new client site in development at http://knit1.hazelhost.co.uk
On a product page that uses a single add to cart button, we can't seem to get the button to appear at the bottom of the page below the products (instead the button appears above the products).
The NQV "SingleAdd" is below "ProductBulk" in Act_ProductBody.
Any suggestions as to why the page behaves as if "SingleAdd" were above "ProductBulk" ?
An example page is: http://knit1.hazelhost.co.uk/shop/Ne...ed_Cotton.html
I have pasted the code from Act_ProductBody below:
Many thanks
Nick
Act_ProductBody:
============
<script language=JavaScript>
<!--
var currentcol = 0;
var colwidth = Math.floor(100 / CUSTOMVAR:NUMCOLS);
// -->
</script>
NETQUOTEVAR:CARTERRORLISTXML
NETQUOTEVAR:HIDDENINPUT
<TABLE WIDTH="95%" COLS="3" BORDER="0" CELLPADDING="3" CELLSPACING="0" ALIGN="left">
NETQUOTEVAR:PRODUCTBULK
<script language=JavaScript>
<!--
if ( currentcol != 0 )
{
while ( currentcol++ < CUSTOMVAR:NUMCOLS ) document.write('<td width="' + colwidth + '%"></td>');
document.write('</tr></table></td></tr>');
currentcol = 0;
}
// -->
</script>
<DIV ALIGN="RIGHT">
NETQUOTEVAR:SINGLEADD
</DIV>
</TABLE>
We've got a new client site in development at http://knit1.hazelhost.co.uk
On a product page that uses a single add to cart button, we can't seem to get the button to appear at the bottom of the page below the products (instead the button appears above the products).
The NQV "SingleAdd" is below "ProductBulk" in Act_ProductBody.
Any suggestions as to why the page behaves as if "SingleAdd" were above "ProductBulk" ?
An example page is: http://knit1.hazelhost.co.uk/shop/Ne...ed_Cotton.html
I have pasted the code from Act_ProductBody below:
Many thanks
Nick
Act_ProductBody:
============
<script language=JavaScript>
<!--
var currentcol = 0;
var colwidth = Math.floor(100 / CUSTOMVAR:NUMCOLS);
// -->
</script>
NETQUOTEVAR:CARTERRORLISTXML
NETQUOTEVAR:HIDDENINPUT
<TABLE WIDTH="95%" COLS="3" BORDER="0" CELLPADDING="3" CELLSPACING="0" ALIGN="left">
NETQUOTEVAR:PRODUCTBULK
<script language=JavaScript>
<!--
if ( currentcol != 0 )
{
while ( currentcol++ < CUSTOMVAR:NUMCOLS ) document.write('<td width="' + colwidth + '%"></td>');
document.write('</tr></table></td></tr>');
currentcol = 0;
}
// -->
</script>
<DIV ALIGN="RIGHT">
NETQUOTEVAR:SINGLEADD
</DIV>
</TABLE>
Comment