How do I move icon and menu items to the left

Solved

How do I move icon and menu items to the left

JGBowie
Excursionist
51 0 26

wanting to move my logo and menu items like the image provided would love some help

like this store provided https://www.wilsonandfrenchy.com.au/?srsltid=AfmBOopn-wmyxQ6FclN7NFh0AwZn6EisBr5TJ96Lj3uWTWw6jlRBLRm...

 

my store is https://softbeginningsboutique.com/

use landon to access!

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10133 2404 3038

This is an accepted solution.

Hi @JGBowie 

TRy this one. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes"
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 
<style>
@media screen and (min-width: 768px) {
    .header-wrapper header.header.header--top-left.page-width.header--has-menu {
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        gap: 0;
    }
    header.header .header__heading-link {
    margin-left: -3rem !important;
}
    .header__icons {
    margin-right: 2rem;
}

}
@media screen and (min-width: 950px) {
    .header:not(.header--middle-left) .header__inline-menu {
        margin-top: 0rem;
    }
}
</style>
  • And Save. 
  • Result:
  • Made4uoRibe_0-1743157972207.png

     

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 3 (3)

Manoj_j
Shopify Partner
92 2 6

Hi @JGBowie ,

you want the effects like the sample website ? it can be done with custom coding. 

Thanks

Manoj

- Need a Shopify Specialist ?
- Email Me | For quick response message me
- Custom Design | Advanced Coding | Store Modifications
- Digital Marketing | SEO Expert

Made4uo-Ribe
Shopify Partner
10133 2404 3038

This is an accepted solution.

Hi @JGBowie 

TRy this one. 

  • From your Shopify admin dashboard, click on "Online Store" and then "Themes"
  • Find the theme that you want to edit and click on "Actions" and then "Edit code".
  • In the "theme. Liquid" file. Find the </body> tag and paste the code below before the tag. 
<style>
@media screen and (min-width: 768px) {
    .header-wrapper header.header.header--top-left.page-width.header--has-menu {
        display: grid !important;
        grid-template-columns: auto 1fr !important;
        gap: 0;
    }
    header.header .header__heading-link {
    margin-left: -3rem !important;
}
    .header__icons {
    margin-right: 2rem;
}

}
@media screen and (min-width: 950px) {
    .header:not(.header--middle-left) .header__inline-menu {
        margin-top: 0rem;
    }
}
</style>
  • And Save. 
  • Result:
  • Made4uoRibe_0-1743157972207.png

     

Please don't forget to Like and Mark Solution to the post that helped you. Thanks!

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
JGBowie
Excursionist
51 0 26

amazing than you!