如何更改WooCommerce单一产品页面样式

时间:2018-05-06 14:47:17

标签: wordpress woocommerce

如何更改单个产品页面标签(指向标签下方)? Change Product lable

如何在产品主图像中添加纯白色轮廓? enter image description here

website

1 个答案:

答案 0 :(得分:0)

更改单个商品页面标签

 $(document).ready(function(){
  $('main#loadintothis .summary table.variations td.label label').text('you label text here');
  });
  

您可以使用此css

为产品主图像添加纯白色轮廓
main#loadintothis ul.slides img {
    padding: 3px;
    border: 1px solid #fff;
}