User Registration

Step by step documentation to set up a user registration form for your website.

Where do I add my custom CSS?

For General Themes #

Sometimes design issues might come because of the conflict between the theme and plugin or you might need to make a new design according to the site’s requirements, At that time you need to add Custom CSS.

Well, adding Custom CSS code is quite straightforward as long as you are familiar with the basics of HTML and CSS. Follow the steps below to add the CSS written by you or provided via our support channel.

  • Go to Appearance >>Customize>>Additional CSS
  • Add the CSS code inside the editor.
  • Click on Publish button of Customizer.

For example: If you want to change the Button Color of the User Registration Form, you can add the following CSS code inside the Additional CSS box as shown below:

.ur-frontend-form .ur-button-container .ur-submit-button {
background-color: #333;
color: #fff;
}

For FSE/Block Themes #

For Block themes that support building your site with blocks, this means you will not need to use the Customizer causing it to be hidden. However, you access it using the following URL.
https://sitename.com/wp-admin/customize.php

Replace the 'sitename.com' on the above URL with the website URL.

Moreover, you can create a child theme and add the given CSS to the style.css file of the child theme.

Want to know how to create a child theme?

Powered by BetterDocs

Scroll to top