• Resolved japorrero

    (@japorrero)


    Hola,
    Tengo una consulta.
    ?Sería posible cambiar el color del botón “enviar”? Por defecto aparece en azul, pero me gustaría que se adecuara más a los colores de la web.

    Gracias.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Elana Davis

    (@elanasparkle)

    Hello @japorrero,

    ?Thank you for reaching out to support! Sure, you can change the button’s color with a CSS override depending on how you would like to display it on forms. You can do this for every form or you can do it on just one form.

    If you are trying to do this on one form, you can use the following CSS in your code. If you use this, you will have to inspect the form button and get the button number. In my example, the button number is “wpuf_submit_288” and will have to be changed accordingly with what is on your form.

    .weforms_submit_btn button[type=submit] {
    background-color: #024488 !important;
    border-color: #024488 !important;
    color: #fff !important;
    }

    .wpuf_submit_288 button[type=submit]:hover {
    background-color: #022B57 !important;
    }

    If you are trying to update every submit button on all of your forms, you can use the following to change them in a custom CSS style sheet.

    .weforms_submit_btn button[type=submit] {
    background-color: black !important;
    border-color: #024488 !important;
    color: black !important;
    }
    .wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-submit input[type=submit]{
    background-color: black !important;
    border-color: #024488 !important;
    color: black !important;
    }

    Let me know if you have any issues or any further questions about setting that up. I will gladly assist where I can.

    Thanks
    Elana D.

    Plugin Support Elana Davis

    (@elanasparkle)

    Hello @japorrero,

    Per our policies, we are going to mark this as resolved. Let us know if you need any further assistance or have any issues.

    Thanks
    Elana D.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Cambiar color botón’ is closed to new replies.