Move menu items in header

Solved

Move menu items in header

TrendBlend
Trailblazer
287 0 32

Hello I want to change the location of where the menu items show in my header,  my url is: Unique Home Decor & Lighting - Create Your Perfect Space – InteriorGlows, but I do not know how to do this

Schermafbeelding 2024-12-25 171504.png

Accepted Solution (1)

DaisyVo
Shopify Partner
2261 267 324

This is an accepted solution.

Hi @TrendBlend 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

 

@media screen and (min-width: 1024px){
header.header {
    grid-template-areas: "heading . navigation icons";
    grid-template-columns: auto 20px 1fr auto !important;
}

 

 

Here is the result: image_720.png

 

I hope this helps

 

 Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution

View solution in original post

Replies 5 (5)

Guleria
Shopify Partner
3944 791 1120

Hello @TrendBlend ,

 

Follow these steps:

1. Go to Online Store -> Theme -> Edit code

2. Open your base.css file and paste the following code at the bottom:

@media screen and (min-width: 767px) {
header.header.header--top-left.header--mobile-center.page-width.header--has-menu.header--has-social.header--has-account.header--has-localizations {
    display: flex;
    gap: 15%;
}
}

 

Regards
Guleria

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
TrendBlend
Trailblazer
287 0 32

Hello @Guleria this placed it on top but it is not placed that nice, and my language selector moved due to it. I have now removed the language and currency selectors in the header and it is again placed under my logo. do you know how to place it like this:

Schermafbeelding 2024-12-25 174210.png

Guleria
Shopify Partner
3944 791 1120

Use this code

 

 

@media screen and (min-width: 767px) {
header.header.header--top-left.header--mobile-center.page-width.header--has-menu.header--has-social.header--has-account.header--has-localizations {
    display: flex;
    gap: 25%;
}
}

 

 

 

Regards
Guleria

 

- Drop an email   if you are looking for quick fix or any customization
- Email: guleriathakur43@gmail.com Skype: live:navrocks1
- Try GEMPAGES a great page builder
TrendBlend
Trailblazer
287 0 32

DaisyVo
Shopify Partner
2261 267 324

This is an accepted solution.

Hi @TrendBlend 

 

To complete your requests, please follow these steps:
  1. Go to Shopify Admin > Online Store > Theme > Customize > Theme Settings > Custom CSS https://prnt.sc/i8ljAMlHJUKl
  2. Paste the code provided into the Custom CSS section.

 

 

@media screen and (min-width: 1024px){
header.header {
    grid-template-areas: "heading . navigation icons";
    grid-template-columns: auto 20px 1fr auto !important;
}

 

 

Here is the result: image_720.png

 

I hope this helps

 

 Best,

 

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution