Hi
I am adding my cart to brochure pages but note that it apears differently.
For example, within a Section page it appears
Items: 3
Value:
$16.50
	and within a brochure page it appears
Items: 3
Value: $16.50
	I have tried to use the same code in the brochure page but it still shows Value: $16.50 on one line and forces the table containing the contents of the cart to stretch sideways, as a result, partly hides the container that it site in.  I have also played with the <td width="124" background="banner_header_cart.gif">  part of it but no joy.
Any thoughts on forcing the price onto a seperate line, ie
Value:
$16.50
Thanks
					I am adding my cart to brochure pages but note that it apears differently.
For example, within a Section page it appears
Items: 3
Value:
$16.50
Code:
	
	<td width="124" background="banner_header_cart.gif"> 
        <table width="87" height="70" border="0" align="right" cellspacing="5" cellpadding="5">
          <tr> 
            <td bgcolor="#FFFFFF"><div align="right"><span class="actxxsmall"> <font color="NETQUOTEVAR:BGCOLORCSS">
               <script language="JavaScript">
			document.write("NETQUOTEVAR:CARTCOOKIEITEMS " + getCartItem(3)+"<BR>");
			document.write("NETQUOTEVAR:CARTCOOKIEVALUE " + getCartItem(1));
	       </script></font></span></div>
	    </td>
Items: 3
Value: $16.50
Code:
	
	<td width="70"><div align="right"> 
        <table width="87" height="70" border="0" align="right" cellpadding="5" cellspacing="5">
          <tr> <td bgcolor="#FFFFFF"><div align="right"><span class="actxxsmall"> <font color="#000033">
	<script language="JavaScript">
		document.write("Items: " + getCartItem(3)+"<BR>");
		document.write("Value: " + getCartItem(1));
	</script></font></span></div>
	</td>
Any thoughts on forcing the price onto a seperate line, ie
Value:
$16.50
Thanks
Comment