(Squarespace) Make shopping cart nav sticky with Cart icon only

Description

  • Cart Page
  • Sticky Navigation
  • Navigation has Cart icon only

#1. First, you need to edit Site Header > Enable Cart

#2. Next, enable Fixed Header option

#3. Use this code to Custom CSS
If code doesn’t work, you can comment below, message or email me.

body#cart {
    div.header-display-desktop>div:not(.header-actions) {
        visibility: hidden;
        display: none;
    }
    a.btn {
        display: none;
    }
    div.header-actions-action--cart {
        float: right;
        position: absolute;
        right: 0;
    }
    header#header, .header-background-solid {
        background-color: transparent !important;
    }
}

1 Like