2017-04-11 147 views
-5

在我的Wordpress站點中,點擊「READ MORE」按鈕時,按鈕的大小會擴大,並在導向相關鏈接之前製作一個大的「黑色」塊?按鈕在點擊時擴展大小

我已經嘗試將按鈕的'懸停'顏色更改爲'透明',但只需將「READ MORE」文字改爲透明塊的頂部?

Website Link

a.button.add_to_cart_button, 
a.button.product_type_simple { 
    bottom: 22px; 
    position: absolute; 
} 

回答

1

這是因爲.woocommerce頁a.button:活性具有頂部:0; ,你應該改變如下:

a.button:active { 
    top: inherit !important; 
} 
+0

謝謝你的作品很好,謝謝 – user1426583