I am trying to amend the productline template to display a table of 2 rows and 3 columns for each product. The first row is to contain product image on the left (spanning one column) and product description etc to the right (spanning 2 columns).
The second row to contain price detail (including a link to currency converter (spanning 2 columns) and qty/add to cart on the right(1 column).
The problem i am having is that when i increase the colspan on row 2 for the first <td>, it screws up my layout of row1.
It might make more sense if you have a look at http://www.dislocate-records.com/aca..._Products.html
(i have tried to describe my problem in the text of the first product - but basically, it's that big black space in the middle!).
My productline template is attached .
If you look at http://www.dislocate-records.com/aca...Releases.html, the Reason i am trying to change the second row is because i have included the currency conversion, and don't want it to wrap around - in fact if i can sort this out, i would probably like to put Jan/harlequins full solution in, but at present it just wraps around and around...
Could one of you gurus please please put me out of my misery?!
many thanks,
Robynne
Product line template:
<!-- ProductLine4 HTML begin -->
<!-- Insert HTML for the top of the individual product -->
NETQUOTEVAR:INCLUDE Act_ProductSeparator.html
NETQUOTEVAR:ENDSEPARATOR
NETQUOTEVAR:PRODUCTFORMBEGIN
<tr>
<td colspan="1" width="200" align="LEFT" valign="top">
NETQUOTEVAR:TEMPLATEBEGINXML
NETQUOTEVAR:PRODUCTIMAGE
</td>
<td colspan="2" width="350" valign="TOP" align="LEFT">
<div align="left">
<a name="NETQUOTEVAR:PRODUCTANCHOR" href="(EmptyReference!)"><span class="prdname"><b>NETQUOTEVAR:PRODUCTNAME</b></span> </a><span class="actxsmall">NETQUOTEVAR:PRODUCTREF<br></span>
<span class="prddesc">NETQUOTEVAR:PRODUCTDESCRIPTION<br>
NETQUOTEVAR:EXTINFOLINK NETQUOTEVAR:EXTINFOBUTTON NETQUOTEVAR:PRODUCTBEGINLINKNETQUOTEVAR:PRODUCTLINKTEXTNETQUOTEVAR:PRODUCTENDLINK </span>
</div>
</td>
</tr>
<tr>
<td colspan="2" align="LEFT" >
<!-- NETQUOTEVAR:PRICEEXPLANATION -->
<span class="prdprice"><b>NETQUOTEVAR:PRODUCTPRICE</b>
<!-- NETQUOTEVAR:OTHERINFOPROMPT
NETQUOTEVARATEPROMPT <br> -->
</span>
</td>
<td valign="top" align="RIGHT">
<span class="actxsmall">
NETQUOTEVAR:CARTERRORXML
NETQUOTEVAR:PRODUCTQUANTITY
<Actinic:ACTIONS>NETQUOTEVAR:ADDTOCARTBUTTON</Actinic:ACTIONS>
</span>
NETQUOTEVAR:TEMPLATEENDXML
</td>
</tr>
NETQUOTEVAR:PRODUCTFORMEND
NETQUOTEVAR:NEXT
<!-- ProductLine4 HTML begin -->
The second row to contain price detail (including a link to currency converter (spanning 2 columns) and qty/add to cart on the right(1 column).
The problem i am having is that when i increase the colspan on row 2 for the first <td>, it screws up my layout of row1.
It might make more sense if you have a look at http://www.dislocate-records.com/aca..._Products.html
(i have tried to describe my problem in the text of the first product - but basically, it's that big black space in the middle!).
My productline template is attached .
If you look at http://www.dislocate-records.com/aca...Releases.html, the Reason i am trying to change the second row is because i have included the currency conversion, and don't want it to wrap around - in fact if i can sort this out, i would probably like to put Jan/harlequins full solution in, but at present it just wraps around and around...
Could one of you gurus please please put me out of my misery?!
many thanks,
Robynne
Product line template:
<!-- ProductLine4 HTML begin -->
<!-- Insert HTML for the top of the individual product -->
NETQUOTEVAR:INCLUDE Act_ProductSeparator.html
NETQUOTEVAR:ENDSEPARATOR
NETQUOTEVAR:PRODUCTFORMBEGIN
<tr>
<td colspan="1" width="200" align="LEFT" valign="top">
NETQUOTEVAR:TEMPLATEBEGINXML
NETQUOTEVAR:PRODUCTIMAGE
</td>
<td colspan="2" width="350" valign="TOP" align="LEFT">
<div align="left">
<a name="NETQUOTEVAR:PRODUCTANCHOR" href="(EmptyReference!)"><span class="prdname"><b>NETQUOTEVAR:PRODUCTNAME</b></span> </a><span class="actxsmall">NETQUOTEVAR:PRODUCTREF<br></span>
<span class="prddesc">NETQUOTEVAR:PRODUCTDESCRIPTION<br>
NETQUOTEVAR:EXTINFOLINK NETQUOTEVAR:EXTINFOBUTTON NETQUOTEVAR:PRODUCTBEGINLINKNETQUOTEVAR:PRODUCTLINKTEXTNETQUOTEVAR:PRODUCTENDLINK </span>
</div>
</td>
</tr>
<tr>
<td colspan="2" align="LEFT" >
<!-- NETQUOTEVAR:PRICEEXPLANATION -->
<span class="prdprice"><b>NETQUOTEVAR:PRODUCTPRICE</b>
<!-- NETQUOTEVAR:OTHERINFOPROMPT
NETQUOTEVARATEPROMPT <br> -->
</span>
</td>
<td valign="top" align="RIGHT">
<span class="actxsmall">
NETQUOTEVAR:CARTERRORXML
NETQUOTEVAR:PRODUCTQUANTITY
<Actinic:ACTIONS>NETQUOTEVAR:ADDTOCARTBUTTON</Actinic:ACTIONS>
</span>
NETQUOTEVAR:TEMPLATEENDXML
</td>
</tr>
NETQUOTEVAR:PRODUCTFORMEND
NETQUOTEVAR:NEXT
<!-- ProductLine4 HTML begin -->
Comment