Announcement

Collapse
No announcement yet.

Can I move the small shopping cart panel

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Can I move the small shopping cart panel

    Is it possible to move the shopping cart panel ie the one with the amount and units in your cart to another area on the page if how ?

    #2
    Yoiu know the one with the cart content in a black box

    Comment


      #3
      If it's in a black box it sounds like you are using one of the Clean Layouts (though with any design questions, it is vital to put what theme you are using as it makes answering them quite tricky otherwise).

      You need to go to 'Design | Options | Layouts' and click 'Edit' next to the 'Default Overall Layout' field. This will open Act_Primary.html.

      The code for the shopping cart panel looks like:
      Code:
                  <table width="100" border="0" cellspacing="0" cellpadding="0" align="center">
                    <tr>
                      <td bgcolor="NETQUOTEVAR:FGCOLORCSS">
                        <div align="center"> <span class="actxxsmall"> <font color="NETQUOTEVAR:BGCOLORCSS">
                          <script language="JavaScript">
      					<!--
      					document.write("NETQUOTEVAR:CARTCOOKIEITEMS&nbsp;" + getCartItem(3)+"&nbsp;<BR>");
      					document.write("NETQUOTEVAR:CARTCOOKIEVALUE&nbsp;" + getCartItem(1));
      					// -->
      					</script>
                          </font></span> </div>
                      </td>
                    </tr>
                  </table>
      and can be moved elsewhere.

      Comment

      Working...
      X