• Resolved rgoudia

    (@rgoudia)


    Hola,
    No soy capaz de cambiar el estilo del botón “confirmar borrado” usando el formulario. No se como puedo hacerlo. Con el botón “borrar cuenta” funciona perfecto porque me da opción a introducir clase y estilo.

    Gracias.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter rgoudia

    (@rgoudia)

    Hola?

    Plugin Author cmc3215

    (@cmc3215)

    @rgoudia translated in English:
    Hello,
    I am not able to change the style of the “confirm delete” button using the form. I don’t know how I can do it. With the button “delete account” it works perfect because it gives me the option to introduce class and style.

    Thank you.

    ————————

    There is not a direct option in the plugin’s settings for editing the form button. However, you can target the submit button using CSS and the form’s id plugin_delete_me_shortcode_form

    Something like this could be placed in your stylesheet…

    form#plugin_delete_me_shortcode_form input[type=submit] {
        padding:5px 15px; 
        background:#ccc; 
        border:0 none;
        cursor:pointer;
        -webkit-border-radius: 5px;
        border-radius: 5px; 
    }
    Plugin Author cmc3215

    (@cmc3215)

    Also, just to be clear, this method works with the Shortcode form option.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘botón de Confirmación’ is closed to new replies.