Header logo position

hello,
I want to fix the header logo position,
actually on home page logo position is perfect but other logo is too align in left side
home page

other page

https://s7092cjts4kj02bd-58506346583.shopifypreview.com
please check

best,

Sohan

Hello @Sohan2198

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (min-width: 990px) { .header__heading { margin-left: unset !important; } .header__heading-logo-wrapper { margin-left: 70px !important; } }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Hi @Sohan2198

@media screen and (min-width: 990px) {
    .header-wrapper .header__heading {
        margin-left: 0px !important; 
    }

    .header--middle-left .header__heading-link, .header--top-left .header__heading-link {
        margin-left: 70px !important;
    }
}

Please add this at the bottom of your base.css file

Hi @Sohan2198 , thank you for posting here!

You can follow my instruction below:

  1. Go to Online Store → Theme → Edit code.
  2. Open your theme.liquid file, paste the code below before of file:

If my answer is working for your store, please let us know by Accepting Soluition and giving Like.