购物车页面上的冒号

时间:2017-10-17 00:19:59

标签: html css wordpress web-deployment

我正在使用WordPress网站,但我在移动版的购物车页面遇到问题。我得到额外的冒号,但我似乎无法弄清楚问题是什么。任何帮助将不胜感激。

https://haultfoods.com/cart/

enter image description here

1 个答案:

答案 0 :(得分:0)

将以下内容添加到自定义css:

@media screen and (max-width: 768px) {
 .woocommerce table.shop_table_responsive tr td::before, 
 .woocommerce-page table.shop_table_responsive tr td::before {
    content: attr(data-title) "" !important;
    /* it was originally content: attr(data-title) ": "; */
 }
}