Hello fernandocervera,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
body #subscribe-submit input[type="submit"] {
background: url('http://www.woodtone.com/PDF/Newsletters/subscribe%20button.jpg') no-repeat; // Replace image url with your button image url
background-size: 95px;
border: none;
color: transparent;
}
Hope this will helps you.
Thanks.
Hello. Thanks a lot.
It just worked partially, because the buton I have to use don’t fit on the same size of the subscription buton. I need replace the buton for one image with different size, but I can’t make that the theme don’t cut the image. How could I put the complete image of my buton?
The buton is: http://ulum.es/wp-content/uploads/2018/07/suscribir.png
Thanks a lot.
Hello fernandocervera,
Try below css code.
body #subscribe-submit input[type="submit"] {
background: url('http://ulum.es/wp-content/uploads/2018/07/suscribir.png') no-repeat; /* Replace image url with your button image url*/
background-size: 130px;
border: none;
width: 130px;
color: transparent;
}
Hope this will helps you.
Thanks.
It worked perfectly! thanks a lot.