# CSS Customizations

### Here are some CSS customizations that you can make in your affiliate portal:

### Remove badges from the affiliate dashboard

To remove the badges showcasing the commission rate and the discount value of the coupon from the affiliate dashboard:

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FgnsXVGWHC1o09QjrAHqY%2FScreenshot%202023-03-13%20130456.png?alt=media&#x26;token=b53d0e0b-af13-4d12-946f-9364c1cd407a" alt=""><figcaption><p>Affiliate dashboard badges</p></figcaption></figure>

Go to the Look and Feel > Affiliate Dashboard > Custom CSS section and paste the following code in there:

```css
.badge {
visibility: hidden;
}
```

After this, click on **Submit**.

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FL4qVzF7Mc6M8Lb0ZDbE9%2FScreenshot%202023-03-13%20130530.png?alt=media&#x26;token=99304edc-37ad-48cc-a1c0-93b1e719b930" alt=""><figcaption><p>Add the code and click on Submit</p></figcaption></figure>

The badges will be removed from the affiliate dashboard.&#x20;

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FKdKFK67BilY8Vsq0bH5p%2Fimage.png?alt=media&#x26;token=6c9098c0-676a-4753-bc57-56c3ae724f0b" alt=""><figcaption></figcaption></figure>

### Remove overlay from the landing page banner

To remove the overlay from the landing page banner:

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FYmbW97Gs7mhjZcg329EL%2FScreenshot%202023-03-22%20003932.png?alt=media&#x26;token=ab47f9d4-5f5c-45e2-8ea8-1cd6a4958a74" alt=""><figcaption><p>Banner overlay</p></figcaption></figure>

Go to the Look and Feel > Affiliate Dashboard > Custom CSS section and paste the following code in there:

```css
#hero_background { 
background-blend-mode: lighten !important;
 }
```

After this, click on **Submit**.

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2F0TUEsPQSHSTc3iiw0Cxx%2FScreenshot%202023-03-22%20004354.png?alt=media&#x26;token=ca6d0c2b-7d07-4196-984a-2254becb66c4" alt=""><figcaption><p>Add the code and click on Submit</p></figcaption></figure>

The overlay will be removed from the landing page banner.

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FsgBPpBLbg66XVY7tB2Nt%2Fimage.png?alt=media&#x26;token=b3970f03-306e-4ea9-82ac-7930e2c5fd27" alt=""><figcaption></figcaption></figure>

### Customize the color of the affiliate portal footer

To customize the color of the footer section:

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FqjpLo8hCS9T9Xk1L5y2P%2FScreenshot%202023-04-06%20235727.png?alt=media&#x26;token=7cd5283a-540b-4988-ba37-014d5ae81510" alt=""><figcaption><p>Affiliate portal footer</p></figcaption></figure>

Go to the Look and Feel > Affiliate Dashboard > Custom CSS section and paste the following code in there:

```css
.bg-light.border-top.border {
background-color: #xxxxxx !important;
}

/* Replace the #xxxxxx with the hex color of your choice */
```

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FipYw4L5rgAwzvXRC7WCo%2FScreenshot%202023-04-07%20000615.png?alt=media&#x26;token=8ffb9919-7cb1-4ce7-91e0-503ea796125d" alt=""><figcaption><p>Add the code and click on Submit</p></figcaption></figure>

The footer color will get set as per the color you set (in the code).

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FnuGbiCM4xQ7z8rgrQxTd%2Fimage.png?alt=media&#x26;token=a0869a61-6ff7-4926-9d94-3e94cd9dcb8a" alt=""><figcaption></figcaption></figure>

## Align the signup page heading to the center&#x20;

To align the signup page heading to the center:

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FU6ZogignFzWLtjlk1P3R%2FScreenshot%202024-01-01%20142006.png?alt=media&#x26;token=0ad9c802-d04b-4f86-a32d-b135e1182527" alt=""><figcaption><p>Signup page heading</p></figcaption></figure>

Go to the Look and Feel > Affiliate Dashboard > Custom CSS section and paste the following code in there:

```css
.text_on_bg {
    text-align: center;
}
```

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2FPTibcRrumaOeGWmZc0Qu%2FScreenshot%202024-01-01%201432123.png?alt=media&#x26;token=75963982-8752-47f2-84fd-65e824fcbe3b" alt=""><figcaption><p>Add the code and click on Submit</p></figcaption></figure>

The heading on the signup page will get centered.&#x20;

{% hint style="info" %}
This will also apply to the heading on the login page of the affiliate portal.
{% endhint %}

<figure><img src="https://1200686697-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LdPzLtyP46oY7cyXnkw%2Fuploads%2F934rKGcSlXTHn0zB2Sfu%2Fimage.png?alt=media&#x26;token=cd3b40af-da12-4ca7-bfcf-f4c43c3af9eb" alt=""><figcaption></figcaption></figure>
