• Resolved andyhiggins

    (@andyhiggins)


    Hello… I wonder if it is possible to change the padding of the submit button please? I have tried adding the following CSS to the Elementor shortcode widget, but it’s stubbornly not changing:

    .dae-shortcode-register-submit{
        padding: 10px 30px!important;
    }
    

    Do you have any ideas please?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author mkscripts

    (@mkscripts)

    Hi,

    Yes this is possible. The padding of the submit button is already set via the download settings, resulting in a CSS code with high priority. This CSS selector has the following structure:

    #dae-shortcode31-download-wrapper .dae-shortcode-register-submit

    You can prioritize your own CSS by making the selector strong enough, by using a parent div (e.g. <div id=”#page”>) present in your site’s HTML code:

    #page .dae-shortcode-download-wrapper .dae-shortcode-register-submit {
        padding: 10px 30px !important;
    }

    If you have any more questions, feel free to ask.

    Kind regards,
    Team Download After Email

    Thread Starter andyhiggins

    (@andyhiggins)

    That’s perfect.
    I added the CSS ID of page to the shortcode widget, dropped in the CSS above, and all is well.
    Thank you ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Submit button padding’ is closed to new replies.