All Collections
Tutorials
Customization & Creatives
Customizing the CSS of the affiliate sign up form
Customizing the CSS of the affiliate sign up form
Noah Tucker avatar
Written by Noah Tucker
Updated over a week ago

Although Social Snowball allows you to customize your affiliate sign up form with our no-code editor, more advanced customizations can be accomplished by adding your own CSS to the form.

To do this, start by heading to the Creatives tab of your merchant dashboard, and click the "Open Editor" button in the Affiliate Sign Up Form section.

From within the editor, head to the "Advanced" tab. In this section, you'll see a field to add custom CSS.

To test this feature, add the following code to the custom CSS field:

* {
background-color: yellow
}

Your sign up form preview should now have a yellow background!

CSS Classes Guide:

Background

.body-login {
background-color: rgba(56, 96, 251, 0.1)!important;
}

Form Controls

.form-control {
border-radius: 50px!important;
background-color: rgba(56, 96, 251, 0.1);
}

Sign Up Button

.btn-thanks {
border-radius: 5›0px!important;
background-color: red!important;
}
Did this answer your question?