0

Shopページにある私のカスタムWooCommerceテーマで、この商品を右余白から取り除くのに最も苦労しています。私が試したことはすべて動作していないようです。ここではHTML出力があります:あなたはワン場合Woocommerce Shop Page Productマージン

<div class="products"> 
<div class="col-md-4 post-17 product type-product status-publish has-post-thumbnail first instock featured shipping-taxable purchasable product-type-simple" style="margin-right:0 !important;"> 
<a href="http://localhost:8888/wordpress/product/product-1/" class="woocommerce-LoopProduct-link"><img width="300" height="252" src="http://localhost:8888/wordpress/wp-content/uploads/2017/05/LCL_WEB-_31-300x252.png" class="attachment-shop_catalog size-shop_catalog wp-post-image" alt="LCL_WEB-_31" title="LCL_WEB-_31"><h2 class="woocommerce-loop-product__title">Product #1</h2> 
<span class="price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>25.00</span></span> 

  <div class="col-md-4 post-23 product type-product status-publish has-post-thumbnail instock featured shipping-taxable purchasable product-type-simple" style="margin-right:0 !important;"> 
<a href="http://localhost:8888/wordpress/product/product-2/" class="woocommerce-LoopProduct-link"><img width="300" height="255" src="http://localhost:8888/wordpress/wp-content/uploads/2017/05/LCL_WEB-_29-2-300x255.png" class="attachment-shop_catalog size-shop_catalog wp-post-image" alt="LCL_WEB-_29" title="LCL_WEB-_29"><h2 class="woocommerce-loop-product__title">Product #2</h2> 
<span class="price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>250.00</span></span> 

  <div class="col-md-4 post-29 product type-product status-publish has-post-thumbnail instock featured shipping-taxable purchasable product-type-simple" style="margin-right:0 !important;"> 
<a href="http://localhost:8888/wordpress/product/product-3/" class="woocommerce-LoopProduct-link"><img width="300" height="255" src="http://localhost:8888/wordpress/wp-content/uploads/2017/05/LCL_WEB-_33-300x255.png" class="attachment-shop_catalog size-shop_catalog wp-post-image" alt="LCL_WEB-_33" title="LCL_WEB-_33"><h2 class="woocommerce-loop-product__title">Product #3</h2> 
<span class="price"><span class="woocommerce-Price-amount amount"><span class="woocommerce-Price-currencySymbol">$</span>450.00</span></span> 

ここ the problem

答えて

1

です相互利用のインラインブロックの隣に別の製品を表示するT:

.product { 
    display: inline-block 
} 

常にその親の全幅をいっぱいにblock表示プロパティ。

+0

ありがとうございます!だからシンプルだけど、トリックをやった!! – jayjayqueen

関連する問題