Move Logo in left from middle near menu icon in mobile version (Dawn Theme)

Hello

How to move Logo in left near menu icon in mobile version (Dawn Theme) in header.

Hello, @Jayesh-Agarwal
Please share “Store URL”
Thanks!

www.jagstore.in

Hello, @Jayesh-Agarwal
Go to the Online Store >>> Customize >>>
Then You can set logo from this

Thanks!

That is making changes in only desktop version. I want in mobile version.

@media (max-width: 768px){
.header__heading, .header__heading-link {
    margin-left: -24px !important;
}
}

Thanks. But it is only moving in homepage. How to make it default in all the pages?

@media (max-width: 768px){
.header__heading-logo {
    height: auto;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}
}

Hello

The position is different in homepage and other pages. In both it should be same left side…

Hello @Jayesh-Agarwal ,

  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:
@media (max-width: 767px) {
    .header .header__heading-link  {
        margin-left: -30px;
    }
}
@media (max-width: 768px) {
    .header__heading, .header__heading-link {
        text-align: center !important;
        justify-self: start !important;
        margin-left: -30px !important;
    }
}