删除了WooCommerce图像 - 全屏宽度

时间:2014-09-22 00:37:50

标签: image woocommerce store product shop

我正在使用WooCommerce,我想删除产品图片,而是拥有完整的页面描述/插件。

使用下面的代码,(wp-content / themes / themename / functions.php)我能够成功删除图像

remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20

然而,左侧大的空白区域。我尝试将代码添加到wp-content / themes / themename / custom.css但它确实工作

.single-product .product .summary { width: auto; }

如何删除空白/空白区域(产品图像通常在哪里)?

1 个答案:

答案 0 :(得分:1)

尝试将.single-product .product .summary更改为:

.single-product .product .summary 
{ 
   width: 100% !important; 
   float: none !important;
}