@devtanbir
Active 3 months, 3 weeks ago
-
Tanbir Ahmod replied to the topic Add an image on the Sign Up Page in the forum Creating & Extending 1 year, 1 month ago
To add an image behind the Sign Up page and personalize the form, you can use custom CSS. See the example below:
#signup-form {
background-image: url('your-image.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 24px;
}Replace your-image.jpg with the URL of your desired…