Re: Drop down menu

Solved

How can I make drop-down menu links collapse on the right side?

off-----market
Excursionist
12 1 1

Hello everyone,
I want my drop-down menu links to collapse on the right side instead of beneath the menu header. I have tried multiple designs, but none seem to do what I am looking for. I am using Dawn 2.0. For more information on what I exactly want, please see the picture attached.Schermafbeelding 2023-10-22 104822.png

Off-Market™
Accepted Solution (1)

BSS-Commerce
Shopify Partner
3477 463 535

This is an accepted solution.

Hi @off-----market ,

Please try the following way:

 

1. Go to Themes > Customize > Edit code: https://prnt.sc/tqb8deSSIKyV


2. Find base.css file: https://prnt.sc/ep8aDuAZ9csQ


3. Add the following code at the end of the file:


details[open] > .header__menu-item .icon-caret {
transform: rotate(270deg);
}
details[open] > .header__submenu {
top: 0;
left: 100%
}

 

4. Save and test

 

Hope it helps @off-----market 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency

View solution in original post

Replies 3 (3)

BSS-Commerce
Shopify Partner
3477 463 535

This is an accepted solution.

Hi @off-----market ,

Please try the following way:

 

1. Go to Themes > Customize > Edit code: https://prnt.sc/tqb8deSSIKyV


2. Find base.css file: https://prnt.sc/ep8aDuAZ9csQ


3. Add the following code at the end of the file:


details[open] > .header__menu-item .icon-caret {
transform: rotate(270deg);
}
details[open] > .header__submenu {
top: 0;
left: 100%
}

 

4. Save and test

 

Hope it helps @off-----market 

If our suggestions are useful, please let us know by giving it a like, marking it as a solution, or donating here .


B2B Solution & Custom Pricing | Product Labels by BSS


Need help from our expert? Kindly share your request with us via community@bsscommerce.com


BSS Commerce - Full-service eCommerce Agency
off-----market
Excursionist
12 1 1

Thank you, that worked like a charm!

Off-Market™
ManKaveStore
Explorer
66 7 8

Hello - Thank you for this. I tried this and it did what it was intended, but I'm trying to make my submenu of the submenu go to the right instead of overlapping over my submenu I tried to look for it in css. I thought it might be sub_menu.list-view or something..