Title: Changing button text
Last modified: May 2, 2019

---

# Changing button text

 *  Resolved [Yunis777](https://wordpress.org/support/users/yunis777/)
 * (@yunis777)
 * [7 years ago](https://wordpress.org/support/topic/changing-button-text-6/)
 * 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](https://wordpress.org/support/users/yunis777/)
 * (@yunis777)
 * [7 years ago](https://wordpress.org/support/topic/changing-button-text-6/#post-11490377)
 * 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](https://postimg.cc/v15W5GqD)
 * Kind regards,
 * Yunis
 *  [abhashdc](https://wordpress.org/support/users/abhashdc/)
 * (@abhashdc)
 * [7 years ago](https://wordpress.org/support/topic/changing-button-text-6/#post-11491698)
 * 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.

 * ![](https://ps.w.org/user-registration/assets/icon-256x256.gif?rev=3284028)
 * [User Registration & Membership - Free & Paid Memberships, Subscriptions, Content Restriction, User Profile, Custom User Registration & Login Builder](https://wordpress.org/plugins/user-registration/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/user-registration/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/user-registration/)
 * [Active Topics](https://wordpress.org/support/plugin/user-registration/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/user-registration/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/user-registration/reviews/)

## Tags

 * [button](https://wordpress.org/support/topic-tag/button/)
 * [change](https://wordpress.org/support/topic-tag/change/)
 * [edit](https://wordpress.org/support/topic-tag/edit/)
 * [register](https://wordpress.org/support/topic-tag/register/)
 * [text button](https://wordpress.org/support/topic-tag/text-button/)

 * 2 replies
 * 2 participants
 * Last reply from: [abhashdc](https://wordpress.org/support/users/abhashdc/)
 * Last activity: [7 years ago](https://wordpress.org/support/topic/changing-button-text-6/#post-11491698)
 * Status: resolved