This topic has 4 replies, 3 voices, and was last updated 4 years, 2 months ago ago by Rose Tyler
Hi there!
I would like to hide the navigion to the next and previous product on the single product page. I’ve found via this forum that there should be an option available in the settings for the theme. Unfortunatley, that’s not the case with my theme.. Could you please inform me how to get this to work?
Futhermore I would like to change the color of the SKU on this same page. It’s in pink now, but I would like it to be gray so it doesn’t look like a link (everything pink is a link).
Thanks in advance! My shoppage is: http://www.creativepanda.nl/winkel
Hello,
1) Go to Theme Options > Custom CSS and add the following code to hide prev/next pagination for the product
.product-information-inner .product-navigation {
display: none;
}
2) Add the following custom code
.product_meta >span span.sku {
color: #767676;
}
Regards
Thanks for your help! Works like a charm. ^_^
Just one more question left, since I couldn’t find a solution on the forum. I would like the ‘update cart’ button to be black in the cart page: https://www.creativepanda.nl/winkelmand/. In Dutch this is the grey button containing ‘Winkelmandje vernieuwen’. How can I change the color of this button?
Hello,
You’re welcome!
.woocommerce-cart-form .btn {
background-color: #262626;
}
.woocommerce-cart-form .btn:hover {
background-color: #fdafab;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up