Documentation You are here: start » v » 0.7.2 » cart

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
v:0.7.2:cart [2012/02/13 10:35] – [Customizing the Default Cart's Colorbox] adamv:0.7.2:cart [2017/04/26 07:02] (current) – external edit 127.0.0.1
Line 53: Line 53:
 </code> </code>
 Just put that before your ''foxycart.complete.js'' call. Just put that before your ''foxycart.complete.js'' call.
 +
 +=== Avoiding box-sizing bugbears ===
 +If you are using  <code css>* {box-sizing: border-box}</code> in your CSS file, you will need to override it for the colorbox to avoid having "cropped" right and bottom edges. Add the following to your CSS file underneath your original box-sizing statement:
 +<code css>
 +div#colorbox{
 +-moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
 +}
 +</code>
  
 === Changing the "Continue Shopping" link === === Changing the "Continue Shopping" link ===
Line 71: Line 79:
  
 ==== Viewing the Cart ==== ==== Viewing the Cart ====
-If you'd just like to load the cart without adding a product to it (ie. a "View Cart" button), you'd link to the cart like you were adding a product, but just include the ''cart=view'' option instead of any product options. This is discussed below in [[#non-product_cart_parameters|non-product cart parameters]].+If you'd just like to load the cart without adding a product to it (ie. a "View Cart" button), you'd link to the cart like you were adding a product, but just include the ''cart=view'' option (as in ''/cart?cart=view''instead of any product options. This is discussed below in [[#non-product_cart_parameters|non-product cart parameters]].
  
 ==== The Persistent "Mini-Cart" ==== ==== The Persistent "Mini-Cart" ====
Line 87: Line 95:
  
 {{section>.:cheat_sheet#transaction_non-product_specific_options&noheader&noeditbutton&permalink&footer&nodate}} {{section>.:cheat_sheet#transaction_non-product_specific_options&noheader&noeditbutton&permalink&footer&nodate}}
- 
  
  

Site Tools