This topic has 9 replies, 2 voices, and was last updated 9 years, 6 months ago ago by Eva Kemp
Hello, I would like to ask for some quick teaching so I am less bother to you.
I would like to change the style of buttons in woocommerce.
I have learned that with google’s “inspect element” I can see the name of the element, and I was able to change some things but I’m having trouble between static and mouse hover.
The “li a/ li a:hover”seems to work only for text, not buttons.
I know this is beginners stuff but I had such great support on this forum so I thought this is better than asking for the code for each change I need to make to those buttons.
Thank you in advance
Hello,
If you want to change background color for “Add to Cart” button you need use this code:
.etheme_add_to_cart_button {
background-color: red !important;
}
.etheme_add_to_cart_button:hover {
background-color: balck !important;
}
Regards,
Eva Kemp.
Ok, thank you,
what is the code for buttons on the cart hover-menu that shows when you are with mouse over cart icon in header?
How do I change the color of list and grid switch-boxes on shop page?
Also, how do I remove breadcrumbs completely from single product pages?
Hello,
Could you please show a screenshot what you want to change in cart widget in the header?
Please add this code in custom.css file to change color for grid/list icons:
.filter-wrap .view-switcher .switchToGrid .icon-th-large::before, .filter-wrap .view-switcher .switchToList .icon-th-list::before {
color: green !important;
}
To remove breadcrumbs use this code:
.woocommerce-breadcrumb {display: none !important;}
Regards,
Eva Kemp.
Thank you,I would like to change the cart button and checkout button in cart widget in header.
Also, how do I remove/change hover effect on products on shop page – the “quick view” semi transparent baner that shows on mouse hover.
Hello,
Use this code for “Checkout” and “View Cart” buttons in the header:
.shopping-container .btn.border-grey:hover {
background-color: green !important;
}
.shopping-container .btn.filled.big:hover {
background-color: green !important;
}
And this code for “Quick view” hover effect:
.show-quickly:hover {
color: #367400 !important;
}
Regards,
Eva Kemp.
How do I change the color of round arrow buttons that show in the corner of owl image gallery?
Thank you, best regards
Hello,
Could you please show a screenshot what arrows you want to modify?
You can upload your screenshot to some image storage, for example http://imgur.com/ .
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up