Impulse theme add count cart correct way???

Browsed through all the forums and got multiple answers none of them seem to work correctly.
my site is https;//luxurymrkt.com

im looking to add item count like this pic

any help is appreciated

Hi @Luxurymrkt ,

Please follow the steps below:

  • Step 1: Go to theme.js file, find ‘.cart-link__bubble-num’ and add code here:

Code:

b.innerHTML = count;
  • Step 2: Go to Assets > theme.css and paste this at the bottom of the file:
.cart-link__bubble--visible {
    color: #000 !important;
    background: transparent !important;
    top: 10px !important;
    right: 6px !important;
    font-size: 9px !important;
}

Hope it helps!