I am trying using CSS to do something without any luck:
I want for the text of a button to have a CSS Text Gradient and on hover for the background color of the button to be a linear gradient.
I can do 1 but not both :(
https://www.pgtgroup.fr/index.php/fr/
for the button Contact Us [upper right]
Currently, I managed to get the button on hover to behave as I want with:
.sppb-btn.sppb-btn-default.sppb-btn-outline.btn-black:hover { background: linear-gradient(80deg, rgba(0,14,70,1) 0%, rgba(30,24,207,1) 35%, rgba(0,226,102,1) 100%);}
but if I add :
#sppb-addon-wrapper-1603870286770 .btn-black { background: -webkit-linear-gradient(22.5deg, #000e46, #1E18CF, #00E266); -webkit-background-clip: text; -webkit-text-fill-color: transparent;}
I get the desired colored text on a white button background with black outline but the Hover does not work ;(
Any idea/help would be amazing !