how do I move my menu items more to the left

Wanting my menu items to be shifter closer to a logo to the left would appreciate help :)!

hey @JGBowie share the URL of your website so i can help you

https://softbeginningsboutique.com/

Hey this is it the password is Landon!

also would you possibly know how to shift my logo back to the right a bit accidently shifted to far left :disappointed_face:

Hey @JGBowie

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 tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

@media screen and (min-width: 768px) {
header.header.header--top-left.page-width.header--has-menu {
    display: flex !important;
    justify-content: center;
    gap: 5rem;
 }
}

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the tag before the body ----->
if this code work please do not forget to like and mark it solution

Hi @JGBowie

Please go to Online Store > Themes > Customize > Theme settings > Custom CSS, add this code

@media (min-width: 990px) {
    html .header--top-left {
        grid-template-columns: auto 2fr 1fr !important;
    }
}

This didnt work :disappointed_face: