Hello!
I’d like to customize the “buy” button in the product listing on the homepage, in the store, and on the product page.
I have a custom CSS code; how do I replace the current theme CSS with this new one?
Example of what I want to make identical:
https://imgur.com/dj9h3u2 (https://easybuilder.com.br/lp-black-friday/)
It’s a button that “moves” and changes color.
I need the basics to know how to apply it, and then I’ll add the desired CSS to the code.
Here’s an example of CSS I got from the page I linked above:
.botao .elementor-button {
background: linear-gradient(-45deg, #3AFF5F, #FFFF00, #3AFF5F, #FFFF00, #3AFF5F, #FFFF00);
background-size: 800% 400%;
transition: all 0.5s;
border-radius: 500px;
border: solid 1px #ffffff20 !important;
animation: gradient 10s infinite
cubic-bezier(.62, .28, .23, .99);
box-shadow: 0 3px 0 0 #2E7D32, 0 -5px 6px 0 #B7FF5A inset, 0 5px 6px 0 #B7FF5A inset, 0 25px 30px -10px #3AFF5F80;
}
Can you help me with that?