toddmotto / flaunt-js

Flaunt JS, stylish responsive navigations with nested click to reveal
89 stars 39 forks source link

Example Page: Menu disappears upon transistioning back to desktop #2

Open ghost opened 10 years ago

ghost commented 10 years ago

On the example page, To recreate issue:

  1. Shrink browser to mobile view
  2. Open menu
  3. Open sub-menus
  4. Close sub-menus
  5. Close menu
  6. Enlarge browser to desktop view
  7. Menu disappears

OS: Mac Browser: Firefox 26

huwrowlands commented 10 years ago

I also get this issue. Any solutions? Thanks

gunaifitm85 commented 10 years ago

same problem here... and still no solutions...

Patrik-Iden commented 9 years ago

I use this: @media screen and (min-width:843px) {

/* Restore the hover function and remove the click function in bigscreen menu (so that the submenu will be closed when you toggle back to bigscreen menu) */ .nav-list { display: block !important; }

.nav-submenu{ display: none !important; }

.nav-item:hover .nav-submenu{ display: block !important; } }

ysanmiguel commented 9 years ago

Patrik-Iden: the solution works very well, thank you very much!!!

Shivari commented 9 years ago

Patrik-Iden: you're a lifesaver! Thanks.