Adjust header words placement

Can someone help me fix the word Login so it doesn’t overlap the word Cart?

https://uniquegiftsandkeepsakes.com/

geefle

Thanks in advance!

2 Likes

Please paste the code in the end of base.css file. Here is how you can find base.css file.

Go to Shopify Admin > Online Store > Edit Code > Base.css

In the end of this file paste the following code.

.header__icon--account {
    margin: 0px 25px 0px 0px;
}

Result:

If this was helpful mark as Solution and Like it.

Thanks

Hello @cinderella518

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.header__icon:not(.header__icon--summary), .header__icon span {
justify-content: flex-start!important;
}

1 Like

Hey @cinderella518

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

1 Like

It worked thank you!