• Resolved legalmartin

    (@legalmartin)


    Hello,

    I have set the registration form’s max-width to 1200px.

    I have opted not to display the secondary button.

    How do I change the width of the Register button (here renamed as ‘Submit’) to 1200 px?

    Regards,

    Martin

    • This topic was modified 2 years, 4 months ago by legalmartin.

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Aswin Giri

    (@aswingiri)

    Hello @legalmartin

    If you are still looking for a solution, please add the following CSS to wp-admin > appearance > customize > Additional CSS

    body.page-id-2 .um-register.um-86 #um-submit-btn {
        display: block !important;
        width: 100% !important;
        max-width: 1200px !important;
        }
    Thread Starter legalmartin

    (@legalmartin)

    Hello,

    This seems very specific in terms of id. It is probably why it does not work on my end.

    I tried something more generic, but for some reason, the width does not change, whereas the background-color and the font-weight css do work:

    .um-button {
    background-color: #000000 !important;
    font-weight: bolder !important;
    width: 1200px !important;
    }`

    Regards,

    Martin

    Plugin Support Ultimate Member Support

    (@ultimatemembersupport)

    Hi @legalmartin

    Did you try adding the max-width ?

    .um-button {
    background-color: #000000 !important;
    font-weight: bolder !important;
    max-width:1200px !important;
    width: 1200px !important;
    }
    Thread Starter legalmartin

    (@legalmartin)

    Hello,

    I did and tried again – no impact on width.

    You may close this ticket. It is not that important after all

    Regards

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Register button custom width’ is closed to new replies.