I need of more columns since dropdown menus too long

Solved

I need of more columns since dropdown menus too long

Diskodorr
Tourist
5 0 1

Hey!

 

I have an issue where my dropdown menu from the header is far too long. It seems this is my themes only option for drop-downs? I would want to either split it into two columns or have another option for the dropdown menu. Specifically I'm talking about the "Brands" dropdown which goes through the whole page... 

 

Anyone who can help?

 

Here is my website:

https://thesunshineshrine.com/

Accepted Solution (1)

David_SHT
Globetrotter
605 125 129

This is an accepted solution.

Hi @Diskodorr  ,

This is David at SalesHunterThemes.

Thank you for your question. 

You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code.

Go Assets folder -> theme.liquid file.

Add the following code in the bottom of the file above </body> tag

<style>
.site-nav .site-nav__dropdown{
   max-height: 400px;
   overflow-y: auto;
}
</style>

David_SHT_0-1692785924962.png

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

Hopefully, this proves useful.
David | SalesHunterThemes team

We create fast Shopify themes, focusing on exceptional performance and seamless experience across all devices.

Try our Electro theme Free! (Now at Black Friday price)

View solution in original post

Replies 8 (8)

dbuglab
Shopify Partner
473 51 53

Hi @Diskodorr 

You can use the mega menu app for this, using app you can set the menu as per your requirement.

banned

David_SHT
Globetrotter
605 125 129

This is an accepted solution.

Hi @Diskodorr  ,

This is David at SalesHunterThemes.

Thank you for your question. 

You can try to follow these steps:

Go to Online Store -> Themes -> Actions -> Edit code.

Go Assets folder -> theme.liquid file.

Add the following code in the bottom of the file above </body> tag

<style>
.site-nav .site-nav__dropdown{
   max-height: 400px;
   overflow-y: auto;
}
</style>

David_SHT_0-1692785924962.png

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

Hopefully, this proves useful.
David | SalesHunterThemes team

We create fast Shopify themes, focusing on exceptional performance and seamless experience across all devices.

Try our Electro theme Free! (Now at Black Friday price)

Diskodorr
Tourist
5 0 1

Yes! 

 

Thank you very much that was exactly what I needed!

 

 

David_SHT
Globetrotter
605 125 129

You're welcome! I'm glad I could provide the information you needed.

We create fast Shopify themes, focusing on exceptional performance and seamless experience across all devices.

Try our Electro theme Free! (Now at Black Friday price)

Pure_Flight
Excursionist
25 1 1

This method didn't seem to change anything in the Taste theme. Should it have?

allused
Visitor
2 0 0

This solution is outdated if you have the dawn 2.0 theme the way I did it was to go to edit theme

find the component-list-menu.css find the .list-menu--disclosure and use the following code below. You can change the columns to your liking but also change the width to make sure your background covers your list.

 

.list-menu--disclosure {
position: absolute;
min-width: 100%;
width: 80rem;
border: 1px solid rgba(var(--color-foreground), 0.2);
colums: 5;
-webkit-columns: 5;
-moz-columns: 5;
column-gap: 40px;
}

Pure_Flight
Excursionist
25 1 1

Using this method seems to widen the dropdown menu, but the list of entries in the dropdown menu does not populate the second column. Any advise? I am using the 'Taste' theme. 

allused
Visitor
2 0 0

can you send me a screen shot?