Plus和Minus没有显示输入Woocommerce

时间:2014-03-31 14:01:07

标签: wordpress input icons woocommerce

加号和减号图标/符号没有显示在我的按钮中,我为什么感到非常难过?

有问题的页面在这里: http://rainbowquran.co.uk/product/small-quran-soft-purple/

任何帮助表示赞赏:)

2 个答案:

答案 0 :(得分:0)

问题在于style.css中的CSS属性。 在第1060行,删除此属性:

    text-indent: -9999px;

答案 1 :(得分:0)

由于style.css中的以下行,您无法看到加号/减号图标

text-indent: -9999px;

它采用以下风格:

.minus, .plus 
{
    padding: 0 5px;
    width: 20px!important;
    height: 31px;
    border: none;
    background-color: #fff;
    background-position: 8px 7px;
    background-repeat: no-repeat;
    color: #fff;
    text-indent: -9999px;
    font-size: 16px;
    cursor: pointer;
}

从样式中删除它应该有效。