Skip to:
Content
Pages
Categories
Search
Top
Bottom

Add an image on the Sign Up Page


  • plato22
    Participant

    @plato22

    How do I add an image behind the ‘Sign Up’ Page to personalise the form a little?

Viewing 3 replies - 1 through 3 (of 3 total)

  • jansondavid
    Participant

    @jansondavid

    To add an image behind the ‘Sign Up’ page and personalize the form, you can use custom CSS. Here’s a simple example you can add to your CSS code:

    #signup-page {
        background-image: url('your-image-url.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    Replace ‘your-image-url.jpg’ with the URL of your desired image. This code assumes there is an element with the ID ‘signup-page’ on your sign-up page. Adjust the ID accordingly based on your HTML structure.


    Tanbir Ahmod
    Participant

    @devtanbir

    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 image.


    alexhales123
    Participant

    @alexhales123

    If you’re looking to add a background image and personalize the ‘Sign Up’ page further, you can use custom CSS. Here’s a simple example to get you started:

    css
    Copy code
    #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 the image you’d like to use. You can customize the padding, background size, position, and other properties to suit your preferences.

    To implement this:

    Access your platform’s customization or theme settings.
    Look for an option to add custom CSS.
    Paste the provided code snippet.
    Save your changes.
    This should apply the background image to the ‘Sign Up’ page as per your specifications. If you have any questions or need further assistance, feel free to reach out.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar