Cart header

Hi Guys!! This is a new account but im old on shopify.. I have a problem that I cannot solve for this shop: https://ddktbr-ka.myshopify.com/ . First time I hidded the cart and now I want it back, but now, the cart it is staying one row down instead to be in the header ( in the header at right part ) .help me position it good please..

Hi there!

Thanks for reaching out. I’ve checked your shop, and it seems the cart icon has been displaced from its original header position. This usually happens when the display or CSS visibility properties were modified while hiding the cart.

To fix this:

  1. Go to your theme editor and check the header.liquid file.

  2. Ensure the cart icon code is placed inside the main header container (usually wrapped in <header> or <div class="header__icons">).

  3. In your theme’s CSS file, look for custom code that might include margin-top, display, or position changes affecting the cart element.

  4. Reset those properties to:

    .cart-icon {
      position: absolute;
      right: 20px;
      top: 20px;
    }
    
    
  5. Save and preview the theme.