How to replace the cart image with 'CART' in Dawn theme header?

hello, how can you remove the classic cart image by replacing it with the word “CART” with the font of the theme I’m using. Position HEADER (DAWN theme).

Hi @Alessioroma , go to edit code > sections > header.liquid. Find this:


        {%- liquid
          if cart == empty
            render 'icon-cart-empty'
          else
            render 'icon-cart'
          endif
        -%}
        {{ 'templates.cart.cart' | t }}
        {%- if cart != empty -%}
          

            {%- if cart.item_count < 100 -%}
              {{ cart.item_count }}
            {%- endif -%}
            {{ 'sections.header.cart_count' | t: count: cart.item_count }}
          

        {%- endif -%}
      

Replace it with:


        CART

hello it works very well thanks, but there is a small problem, when I add an item to the cart, I buy the shopper bag again