---
title: "How do I remove the Skio Secured badge from the Customer Portal and Login page?"
slug: "how-do-i-remove-the-skio-secured-badge-from-the-customer-portallogin-page"
updated: 2025-12-10T18:45:30Z
published: 2025-12-10T18:45:30Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://help.skio.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How do I remove the Skio Secured badge from the Customer Portal and Login page?

The **Skio Secured** badge normally appears at the top of the Skio Login and Customer Portal page.

![](https://cdn.us.document360.io/a953bba6-c70d-43ce-bc77-d7f32a8fc514/Images/Documentation/CleanShot 2025-12-10 at 13.41.41.png)

To remove the badge, add the following code **above** the tag in your theme’s `layout/theme.liquid` file in your **Shopify theme**, or in the custom CSS section of your portal settings:

### In Customer Portal v2 (CPv2)

> Learn more about [adding custom CSS to CPv2 here.](/help/docs/customer-portal-v2-settings#css)

```css
 #__next a[href="https://skio.com"] {
    display: none !important;
  }
```

### In Customer Portal v3 (CPv3)

> Learn more about [adding custom CSS to CPv2 here.](/help/docs/customizing-customer-portal-branding#add-custom-css-styling)

```css
[data-skio-name="navbar-header"] > span:has(svg) {
  visibility: hidden; 
}
```
