0

私は simpleCart(js) を試していますが、私のカートではすべての項目属性がまとめられています。どうすればそれらを離すことができますか?

これは私の初期化スクリプトです

<script>
   simpleCart({
   currency: "GBP",
   checkout: {
      type: "PayPal",
      email: "you@yours.com"
   },
   cartColumns: [
    { attr: "name", label: "Name" } ,
    { attr: "price" , label: "Price", view: 'currency' } ,
    { attr: "quantity" , label: "Qty" } ,
    { attr: "total" , label: "SubTotal", view: 'currency' } ,
    { view: "remove" , text: "Remove Item" , label: false }
],
cartStyle : "table"
   });

</script>

これは私のカートビューです

<div class="cart">
<div class="simpleCart_items">   </div>',
<span class="simpleCart_quantity"></span> items - <span class="simpleCart_total">  
</span>
<a href="javascript:;" class="simpleCart_checkout">Checkout  </a>
<a href="javascript:;" class="simpleCart_empty">  Empty Basket</a>
</div>
</div>

誰でも私を助けることができますか?

4

1 に答える 1

0

CSS スタイルで実現できます。このセレクター.cart .simpleCart_items table tr thを使用して、マージンまたはパディングを追加するだけです。それはあなた次第です。

CSS は次のようになります。

.cart .simpleCart_items table tr th{
    padding: 8px;
}
于 2014-09-03T11:09:18.910 に答える