• Resolved Yunis777

    (@yunis777)


    Hi,

    The text on the clickable button underneath the form is ‘Register’. Can I change it to something else?

    Kind regards,

    Yunis

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Yunis777

    (@yunis777)

    Hi,

    Also, in addition to changing the text of clickable button, how can its size be increased and screen location be moved to the left?

    See screenshot: https://postimg.cc/v15W5GqD

    Kind regards,

    Yunis

    Hi Yunis777,
    Yes, you can change the text of the button. I have listed the steps below:

    • Log into your WordPress admin panel
    • Go to user Registration
    • Click on edit on your desired form
    • Go to Form Setting tab
    • There you can see “Form submit button label”
    • Change it to change the text of the button

    To change the size and position of the button is not possible without working with the code. You will need to add additional CSS to it by going into Appearance > Customize > Additional CSS.

    To change the position of the button:

    
    .ur-frontend-form form button[type=submit], .ur-frontend-form form input[type=submit] {
    	float:right;
    } 

    Above code will change the position of the button to the way you want in that screenshot. Paste it exactly in your Additional CSS. Change the position of the button to left if you want it on the left-hand side.

    To change the size of the button paste the code below in additional css:

    .ur-frontend-form form .ur-submit-button {
    height:50px;
    width:50px;
    }

    Change the value for height and width accordingly to change the size of the button.

    Thanks!

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