• Is there a built in menu somewhere to change the cart icon, since this theme comes with two different ones? I can’t seem to find a menu to change this.

Viewing 1 replies (of 1 total)
  • Hi @rralff,

    Currently there is no setting in the theme to change the cart icon.

    You can use your own icon by using this CSS code to apply into your site’s Additional CSS under Customize menu.

    .site-header-cart .cart-count svg {
      opacity: 0;
    }
    
    .site-header-cart .cart-count {
      background-image: url('YOUR_SITE[dot]COM/path/to/image.png');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center center;
    }

    Relace YOUR_SITE[dot]COM/path/to/image.png with an image URL you can get from your site’s media library (Dashboard > Media).

    Hope this reply helps.

    Regards,
    Kharis

Viewing 1 replies (of 1 total)
  • The topic ‘Change Cart icon setting?’ is closed to new replies.