在我的Wordpress网站上,当" READ MORE"点击按钮,按钮的大小扩大,并产生一个大的黑色"在指向相关链接之前阻止?
我尝试过更改“悬停'按钮的颜色为“透明'但它只需要:"阅读更多"到透明块的顶部?
a.button.add_to_cart_button,
a.button.product_type_simple {
bottom: 22px;
position: absolute;
}
答案 0 :(得分:1)
这是因为.woocommerce-page a.button:active有一个top:0; ,你应该改变如下:
a.button:active {
top: inherit !important;
}