Home › Forums › WoodMart support forum › Buy Buttons CSS Buy Buttons CSS This topic has 13 replies, 2 voices, and was last updated 6 years, 9 months ago by Artem Temos. Viewing 14 posts - 1 through 14 (of 14 total) Author Posts February 15, 2018 at 2:17 pm #40052 brawtradeParticipant how can I change the background colors, borders colors, font colors and the loading image on the buy buttons (also on hover state) February 15, 2018 at 2:28 pm #40058 Artem TemosKeymaster Hello, In general, you can customize all buttons on the website globally via Theme Settings -> Style & Colors -> Buttons. Loading icon is not an image and is made with CSS code so you can’t simply replace it with your image icon. Regards February 15, 2018 at 3:02 pm #40067 brawtradeParticipant How can I change the color of the cart icon that appear on hover? And How I change the loading icon inside the button? February 15, 2018 at 3:24 pm #40070 Artem TemosKeymaster Could you please provide us a screenshot what color do you want to change? As we said, loading icon is not an image and is made with CSS code so you can’t simply replace it with your image icon. February 15, 2018 at 3:40 pm #40076 brawtradeParticipant The background is transparent. I need to change de colors of the icons inside the button. (CSS classes) February 15, 2018 at 3:42 pm #40078 brawtradeParticipant https://drive.google.com/file/d/1hICiu-YxoY8OtBXkwFXsVrV0-A1y-CDL/view?usp=sharing February 15, 2018 at 3:45 pm #40080 Artem TemosKeymaster Use this CSS code div.woodmart-hover-standard .btn-add>a:before { color: black; } February 15, 2018 at 3:56 pm #40083 brawtradeParticipant Thank you. Now i need the code for the loading icon. February 15, 2018 at 3:57 pm #40084 Artem TemosKeymaster How do you want to change the loading icon? February 15, 2018 at 4:10 pm #40088 brawtradeParticipant Change the color. February 15, 2018 at 4:45 pm #40099 Artem TemosKeymaster Try this snippet div.woodmart-hover-standard .btn-add>a:after { border-color: rgba(0,0,0,0.4); border-left-color: rgba(0,0,0,1); } February 15, 2018 at 4:52 pm #40108 brawtradeParticipant Thanks! February 15, 2018 at 6:55 pm #40122 brawtradeParticipant This code: div.woodmart-hover-standard .btn-add>a:after { border-color: rgba(0,0,0,0.4); border-left-color: rgba(0,0,0,1); } Worked for products grid on shop page but in the product page the loading icon (inside the button) is not appearing when i click on buy button February 15, 2018 at 7:19 pm #40126 Artem TemosKeymaster Use this also button.loading.single_add_to_cart_button:after { border-color: rgba(0,0,0,0.4); border-left-color: rgba(0,0,0,1); } Author Posts Viewing 14 posts - 1 through 14 (of 14 total) You must be logged in to create new topics. Login / Register