Help putting logo in the centre next to other menu options

Solved

Help putting logo in the centre next to other menu options

crescenthu
Tourist
12 0 3

Hi! Currently, in the home page on the header, my logo and the menu options have a black gap between each other.

I would like to remove this gap, so that the logo is next to the other menu options. I would want it to be on the left side of "Összes parfüm".

 

zq2pbf-di.myshopify.com

Password: theaba

 

Thanks in advance!

Accepted Solution (1)

Moeed
Shopify Partner
7355 1994 2433

This is an accepted solution.

Hey @crescenthu 

 

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 </body> tag

<style>
@media screen and (min-width: 768px) {
h1.header__heading {
    left: 25rem !important;
    position: relative !important; 
}
}
</style>

RESULT:

Moeed_0-1744725893732.png

 

If I managed to solve your problem then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


View solution in original post

Replies 4 (4)

Hamza_Hussain
Shopify Partner
62 6 13

Try using this CSS code in your header file and it will show like the image below. but there should be an option in the customizer if you are using Dawn Theme

Hamza_Hussain_0-1744725405617.png

 

nav.header__inline-menu {
     order: 1;
}


h1.header__heading {
    order: 2;
}


.header__icons.header__icons--localization.header-localization {
     order: 3;
}

 

Honey G Hamza
crescenthu
Tourist
12 0 3

Hi, this would be great but I would want the logo on the left side of the menu, and the menu position stays where it is now. There is no option for this in the customizer unfortunately

crescenthu_0-1744725730193.png

 

Moeed
Shopify Partner
7355 1994 2433

This is an accepted solution.

Hey @crescenthu 

 

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 </body> tag

<style>
@media screen and (min-width: 768px) {
h1.header__heading {
    left: 25rem !important;
    position: relative !important; 
}
}
</style>

RESULT:

Moeed_0-1744725893732.png

 

If I managed to solve your problem then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


crescenthu
Tourist
12 0 3

Thank you this worked. Is there a way to do this on all pages? because when i enter another page for example the product page, the logo goes back to the left side.