添加到购物车控制数量文本不显示

时间:2014-12-01 13:42:18

标签: css wordpress woocommerce cart shop

出于某种原因,我无法获得数量的文本,以便在有人将产品添加到购物车时显示。单击(+)或( - )按钮时,不会显示任何数字,以便让人知道他们选择了多少项。我试过改变文字颜色/背景但无济于事。我想也许文字和背景颜色是一样的?我真的很难过。任何意见都表示赞赏。

您可以通过产品页面查看我正在谈论的内容:http://museiam.ca/product/woman-dress-for-men/

1 个答案:

答案 0 :(得分:1)

它在那里 - 这是一个保证金问题。它位于主题的css文件中(style.css:Line 4851)。您将要删除边距(第6个元素)。

.quantity input.qty, #content .quantity input.qty {
    width: 48px !important;
    height: 50px !important;
    line-height: 50px !important;
    float: left;
    padding: 0;
    /* margin: 0 0 0 35px; <-- REMOVE THIS LINE */
    text-align: center;
    vertical-align: middle;
    border: 0 !important;
    border-left: 1px solid #4d4d4d !important;
    border-right: 1px solid #4d4d4d !important;
    background: #000;
    color: #fff;
    -webkit-border-top-right-radius: 0 !important;
    -webkit-border-bottom-right-radius: 0 !important;
    -moz-border-radius-topright: 0 !important;
    -moz-border-radius-bottomright: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    box-shadow: inset 0 0 0px 0 #f7f6f7 !important;
    -webkit-box-shadow: inset 0 0 0px 0 #f7f6f7 !important;
    -moz-box-shadow: inset 0 0 0px 0 #f7f6f7 !important;
    font-weight: bold;
    -webkit-border-top-left-radius: 0px !important;
    -webkit-border-bottom-left-radius: 0px !important;
    -moz-border-radius-topleft: 0px !important;
    -moz-border-radius-bottomleft: 0px !important;
    border-top-left-radius: 0px !important;
    border-bottom-left-radius: 0px !important;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
}

Screenshot of fixed solution