Re: Move dropdown menu into two columns

Solved

How can I split a dropdown menu into two columns on Symmetry theme?

diamors
Excursionist
20 0 3

Hello,

 

I am looking to have this dropdown menu be split into two columns. The one column looks far to long, any help splitting this in half so they're side by side would be greatly appreciated. I have attached a photo of the drop down menu. Ideally, I would have two diamond shape columns.

Screenshot_20230131_041211.png

 

My website is on symmetry theme.

https://clairamor.com/

 

Best,

 

Cameron

Accepted Solution (1)

GemPages
Shopify Partner
5625 1262 1286

This is an accepted solution.

Hello @diamors 

It's GemPages support team and glad to support you today.

 

You can follow these steps:

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

2. Open your styles.css file and paste the following code below: 

 

#NavigationTier2-1 .navigation__tier-2 > .navigation__item:nth-child(2) .navigation__tier-3{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

 

If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center

View solution in original post

Replies 2 (2)

PageFly-Victor
Shopify Partner
7865 1786 3134

Hi @diamors 

 

This is Victor from PageFly - Shopify Page Builder App

 

Please add this code to your theme.liquid above the </head> to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the </head>

 

 

<style>
#NavigationTier2-1 .navigation__tier-3:nth-child(2) {
columns: 2 !important;
  -webkit-columns: 2 !important;
  -moz-columns: 2 !important;
}

</style>

 

Hope this can help you solve the issue 

 

Best regards,

Victor | PageFly

 

GemPages
Shopify Partner
5625 1262 1286

This is an accepted solution.

Hello @diamors 

It's GemPages support team and glad to support you today.

 

You can follow these steps:

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

2. Open your styles.css file and paste the following code below: 

 

#NavigationTier2-1 .navigation__tier-2 > .navigation__item:nth-child(2) .navigation__tier-3{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

 

If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team

GemPages - Build any high-converting store pages for any business


- If you find my reply helpful, please hit Like and Mark as Solution
- Get connected: App Store | Blog | Community | Help Center