• backpackzack101

    (@backpackzack101)


    Hello

    I am using the Avada theme. When you use the login shortcode to generate the login form, I noticed that the form will take global settings for the text in the form but wont do the same for the button (Style, color, etc). Its just a boring small grey out of place button. Is there a way to make the login form’s SUBMIT button follow the global settings for buttons on the Avada themed site thats using this members plugin?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Caseproof

    (@caseproof)

    Hi @backpackzack101

    Members use default WordPress login form and doesn’t provide custom styling. Could you share the link to the page with login form and some example of your default button, so I’ll send you CSS to adjust button on login form?

    Best

    Thread Starter backpackzack101

    (@backpackzack101)

    I am not allowed to share a link. I just want to know where to go to edit the button color, size, text and link at in the plugin for the login form button and registration form button. Where can I go to edit this and an example of such if thats ok.

    Plugin Author Caseproof

    (@caseproof)

    The [members_login_form] shortcode is just a wrapper for wp_login_form function provided by WordPress. We don’t provide any CSS for forms populated by this shortcode. Style is inherited from the current theme and the button is just input of submit type. You can style it similar to the code below in Appearance → Customize → Additional CSS field:

    input#wp-submit {
      background: dodgerblue;
      color: #fff;
      padding: 10px 40px;
    }

    I hope that helps.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘edit the submit button on the login form’ is closed to new replies.