Move logo to the left in header (Galleria 2.0 theme)

Hello

i’d like to move my logo to the left in the menu, along the same line as the menu. There is currently only an option to have this centrally and it makes my header too big.

can anyone help me?

https://mojoandmuse.co.uk/

pw: weuhai

TIA

1 Like

@JKP84

sorry for that issue bt can you please check your theme setting may be allow this option if doesn’t can you try below code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/main-header.css ->paste below code at the bottom of the file.
@media (min-width: 992px) {
.\#main-header-toolbar.\@start {
    display: none;
}
}

Hello @JKP84

add this code to your core.css file.

Navigate to online store >> Click edit theme code.

Now find core.css and paste the following code:

@media (min-width: 1000px){
 #main-header .strip-link{margin-bottom: -90px;}
.#main-header-inner-container {display: block !important;}

}

I hope it will be helpful for you.

Did it solve your issue?

  • If yes, Like & Mark As Solution to help the community

  • If not, let me know. also share a screenshot of the code that you added.

Thanks @KetanKumar - that works, however because the logo is quite tall i have a lot of white space, is it possible to reduce the margin for the menu line so that moves up closer to the logo?

thanks

Jo

1 Like

Was looking for this same solution. So thanks!

The only other thing i need to do is bring the menu up on lien with the logo. Do you have a solution for this? See example. I would like the menu to be in-line with the logo just to the right of it.

1 Like

@JKP84

do you have any issue?

@FL_2022

can you please share your store url and example link also

Hi @KetanKumar . My store address is www.fastlineindustries.com

I would like the menu to be in the same line as the logo.

Best

1 Like

@FL_2022

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/main-navigation.css ->paste below code at the bottom of the file.
.\#main-nav-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 15px;
}