Tagged: woocommerce
Hey guys.
I want to remove the “Show details” button under my product images, but i have no idea how this is done. I have tried to use the css code:
button-mini-delimiter { display: none !important; }
.show_details_button {
display: none !important;
}
but it only removes the text and link. I want to remove the entire button, so that “add to cart” is the only button and option under the picture. I want the text “add to cart” aligned in the center aswell.
Link:
http://1.ii.gl/DAvztQTl_.jpg
I hope you guys can help me out!
/Tobias
Hi Kristianbang12!
Thank you for using our theme.
Try to use the following:
#top .avia_cart_buttons .show_details_button {
display: none !important;
}
#top .avia_cart_buttons .button-mini-delimiter {
display: none !important;
}
#top .avia_cart_buttons .add_to_cart_button {
width: 100% !important;
}
Best regards,
Günter
Hey Gunter, thanks alot! Exactly what i was looking for :-)
Have a nice day!