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
First of all I want to thank you for this great template!
The menu code looks like the following
<ul class="collapse show" id="dashboard" data-parent="#sidebar-menu"> <div class="sub-menu"> <li class="active"> <a class="sidenav-item-link" href="index.html"> <span class="nav-text">Ecommerce</span> </a> </li> <li> <a class="sidenav-item-link" href="analytics.html"> <span class="nav-text">Analytics</span> <span class="badge badge-success">new</span> </a> </li> </div> </ul>
However, it is invalid to add <div> between the <ul> and the <li>
<div>
<ul>
<li>
I recommend that you change the code so something like this
<ul class="collapse show sub-menu" id="dashboard" data-parent="#sidebar-menu"> <li class="active"> <a class="sidenav-item-link" href="index.html"> <span class="nav-text">Ecommerce</span> </a> </li> <li> <a class="sidenav-item-link" href="analytics.html"> <span class="nav-text">Analytics</span> <span class="badge badge-success">new</span> </a> </li> </ul>
Of course, the CSS code may have to change as well to accommodate the change
The text was updated successfully, but these errors were encountered:
I also detected the same problem.
Sorry, something went wrong.
Thanks for letting us know about the issue. We will fix it soon.
No branches or pull requests
First of all I want to thank you for this great template!
The menu code looks like the following
However, it is invalid to add
<div>
between the<ul>
and the<li>
I recommend that you change the code so something like this
Of course, the CSS code may have to change as well to accommodate the change
The text was updated successfully, but these errors were encountered: