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

Prev Next

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

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.

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

In Customer Portal v3 (CPv3)

Learn more about adding custom CSS to CPv2 here.

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