Hover to expand menu options DAWN theme

Solved

Hover to expand menu options DAWN theme

CarCleanCC
Explorer
57 0 8

Hello!

 

I am using the dawn theme and my URL is carcleansweden.se.

 

I would like some help with my menu. Instead of needing to press for the dropdown options I would like to hover to see all options instead:

CarCleanCC_0-1734464690153.png

I would hugely appreciate the help!

 

Accepted Solution (1)

codexecom
Shopify Partner
67 11 17

This is an accepted solution.

Hey! @CarCleanCC 
Please add this code on theme.liquid file 

<script>

document.querySelectorAll('.header__menu-item.list-menu__item').forEach(item => {
item.addEventListener('mouseenter', () => {
item.parentElement.setAttribute('open', '');
});

item.addEventListener('mouseleave', () => {
item.parentElement.removeAttribute('open');
});
});

</script>

Please Like & accept the solution.
Need Freelance Shopify Developer, Designer or For further Discussion
Reachout me on whatsapp:+91 919721741072 or , Skype: https://join.skype.com/invite/sDrWRlIVb20I

View solution in original post

Replies 8 (8)

codexecom
Shopify Partner
67 11 17

This is an accepted solution.

Hey! @CarCleanCC 
Please add this code on theme.liquid file 

<script>

document.querySelectorAll('.header__menu-item.list-menu__item').forEach(item => {
item.addEventListener('mouseenter', () => {
item.parentElement.setAttribute('open', '');
});

item.addEventListener('mouseleave', () => {
item.parentElement.removeAttribute('open');
});
});

</script>

Please Like & accept the solution.
Need Freelance Shopify Developer, Designer or For further Discussion
Reachout me on whatsapp:+91 919721741072 or , Skype: https://join.skype.com/invite/sDrWRlIVb20I
CarCleanCC
Explorer
57 0 8

Thank you but now when I try to hover the options below the menu disappears:

CarCleanCC_0-1734466039507.png

 

codexecom
Shopify Partner
67 11 17

For this need access of your store 

i can resolve this . Can i send collabartor resquest.

for Collbartor request you need to share collabrator code

Please Like & accept the solution.
Need Freelance Shopify Developer, Designer or For further Discussion
Reachout me on whatsapp:+91 919721741072 or , Skype: https://join.skype.com/invite/sDrWRlIVb20I
CarCleanCC
Explorer
57 0 8

Thank you, I have shared my Collaborator Request Code

codexecom
Shopify Partner
67 11 17

Please Approve request

Please Like & accept the solution.
Need Freelance Shopify Developer, Designer or For further Discussion
Reachout me on whatsapp:+91 919721741072 or , Skype: https://join.skype.com/invite/sDrWRlIVb20I
codexecom
Shopify Partner
67 11 17

Your Query is now resolved. Please check

Please Like & accept the solution.
Need Freelance Shopify Developer, Designer or For further Discussion
Reachout me on whatsapp:+91 919721741072 or , Skype: https://join.skype.com/invite/sDrWRlIVb20I
CarCleanCC
Explorer
57 0 8

Thank you!

CarCleanCC
Explorer
57 0 8

Hello! For some reason it doesn't work again.