How can I move the menu position to the left in the Dawn theme header?

Solved

How can I move the menu position to the left in the Dawn theme header?

monomgroup
Explorer
99 0 35

Hi!

 

Our Menu currently is positioned in the center of the header. Can anyone help moving it to the left in the header-bar?

 

Please see screenshot: 

Screenshot 2023-06-10 at 17.15.17.png

shop url: www.mism.store

 

Thanks in advance!

 

 

 

Best,

team-mism

Accepted Solution (1)
BSS-Commerce
Shopify Partner
3477 463 535

This is an accepted solution.

You can replace justify-content: left by justify-self : left

@media screen and (min-width: 990px){
 .header--top-center {
    grid-template-areas:
        "navigation navigation ."
        "left-icon heading icons";
 }
 .header--top-center .header__inline-menu {
    justify-self: left;
 }
}

If it still doesn't work, please send us your collaborator request to check it carefully.

 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency

View solution in original post

Replies 5 (5)

BSS-Commerce
Shopify Partner
3477 463 535

Hi @monomgroup 

Is this the final result you want ? 

 

BSSCommerce_2-1686625879696.png

Follow these step and try it: Online store > Theme > Edit code >  go to file base.css. Then, insert this code at the end of file.

@media screen and (min-width: 990px){
 .header--top-center {
    grid-template-areas:
        "navigation navigation ."
        "left-icon heading icons";
 .header--top-center .header__inline-menu {
    justify-content: left;
 }
}

Hope helpful for you. If it worked, please mark as solution. Good luck!

 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency
monomgroup
Explorer
99 0 35

Hi! 

 

Thanks for the reply and the suggestion! Tried it and the outcome looks like this now (s. screenshot): 

 

Screenshot 2023-06-13 at 10.46.20.png

 

 

We would like to have it in line with the logo more to the left. Is there a way of adjusting this? 

 

Thanks a lot in advance! Appreciate it!

 

www.mism.store

 

best,

team-mism

BSS-Commerce
Shopify Partner
3477 463 535

Sorry my mistake. Please, insert this code again. 

@media screen and (min-width: 990px){
 .header--top-center {
    grid-template-areas:
        "navigation navigation ."
        "left-icon heading icons";
 }
 .header--top-center .header__inline-menu {
    justify-content: left;
 }
}

You can check on store font if attribute "justify-content" is left , it work.

BSSCommerce_0-1686653532253.png

 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency
monomgroup
Explorer
99 0 35

Replaced it and checked. Justify content is still on: center.

s. screenshot

Screenshot 2023-06-13 at 15.28.15.png

BSS-Commerce
Shopify Partner
3477 463 535

This is an accepted solution.

You can replace justify-content: left by justify-self : left

@media screen and (min-width: 990px){
 .header--top-center {
    grid-template-areas:
        "navigation navigation ."
        "left-icon heading icons";
 }
 .header--top-center .header__inline-menu {
    justify-self: left;
 }
}

If it still doesn't work, please send us your collaborator request to check it carefully.

 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency