We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just a quick fix for the flashing menu when page reloads.
Example: .topbar-nav .metismenu > li > ul { position: absolute; top: 100%; min-width: 100%; z-index: 1001; display: none; background: #1e1e1e; box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15); }
.topbar-nav .metismenu > li > ul { position: absolute; top: 100%; min-width: 100%; z-index: 1001; display: none; background: #1e1e1e; box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15); }
Or just add "display: none;" to your css
Source: https://stackoverflow.com/questions/10237037/entire-drop-down-menu-quickly-flashes-upon-page-load
Greetz
The text was updated successfully, but these errors were encountered:
I've a solution after inspected from browser to solve a flashing in the metismenu when reloading another page. Step:
.metismenu .mm-collapse:not(.mm-show){display:none}
.metismenu > li:not(.mm-active) > ul:not(.mm-collapse.mm-show) { display:none; }
Note: The version I used was 3.0.7.
Sorry, something went wrong.
No branches or pull requests
Just a quick fix for the flashing menu when page reloads.
Example:
.topbar-nav .metismenu > li > ul { position: absolute; top: 100%; min-width: 100%; z-index: 1001; display: none; background: #1e1e1e; box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15); }
Or just add "display: none;" to your css
Source: https://stackoverflow.com/questions/10237037/entire-drop-down-menu-quickly-flashes-upon-page-load
Greetz
The text was updated successfully, but these errors were encountered: