Dropdown menu appears too fast / Debut Theme

Hi,

My dropdown menu opens too fast, I would like to have it slower like on the https://representclo.com website where the fade effect is longer to appear. Does anybody know how to do this please ?

Thanks.

My website : https://relentless-clothingz.myshopify.com

Hi @Ulysse1300 ,

Go to Assets > theme.css and paste this at the bottom of the file:

.site-nav__dropdown {
    display: block;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
}
.site-nav--has-dropdown:hover .site-nav__dropdown, 
.site-nav--has-dropdown:focus .site-nav__dropdown {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

Hope it helps!

1 Like

Thanks a lot, that’s what I was looking for !

1 Like

Found this thread and went to change in edit mode only to find I have no theme.css only thing under theme is theme-editor.js Any help would be appreciated as to what’s changed since you made this code work

Me too :disappointed_face: