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
Hi, I just have notice that the navbar is no longer sticky even if it's set to layout-navbar-fixed
protected override void OnAfterRender(bool isFirstRender) { layoutManager.IsFooterFixed = true; layoutManager.IsNavBarFixed = true; layoutManager.IsSideBarFixed = true; base.OnAfterRender(isFirstRender); }
Please advise. Thank you.
The text was updated successfully, but these errors were encountered:
I've added this and it is now working good. <nav class="main-header navbar sticky-top navbar-expand navbar-white navbar-light">
<nav class="main-header navbar sticky-top navbar-expand navbar-white navbar-light">
sticky-top
from here: https://stackoverflow.com/a/64161697/1281209
Sorry, something went wrong.
This also fixes the issue:
.layout-navbar-fixed .main-header { left: 0; position: fixed; right: 0; top: 0; z-index: 1037; }
That is without the .wrapper
No branches or pull requests
Hi, I just have notice that the navbar is no longer sticky even if it's set to layout-navbar-fixed
Please advise. Thank you.
The text was updated successfully, but these errors were encountered: