Where would make this change/addition?
Changing z-index:9999 to z-index:8000 in “sm-core-css.css” didn’t seem to do anything different.
I was looking through the css files and the page but can’t seem to find the “id” references in the navigation html code anywhere, especially the “main-menu” one referenced below (I built the page using the sample “simple” code)
from my page:
<nav id="main-nav" role="navigation">
<!-- Mobile menu toggle button (hamburger/x icon) -->
<input id="main-menu-state" type="checkbox" />
<label class="main-menu-btn" for="main-menu-state">
<span class="main-menu-btn-icon"></span> Toggle main menu visibility
</label>
<!-- Sample menu definition -->
<ul id="main-menu" class="sm sm-simple">
<li><a href="#">Membership</a></li>
<li><a href="#">Advertising</a>
<ul>
<li><a href="#">Make a Payment</a></li>
<li><a href="#">Submit an Ad</a></li>
</ul>
</li>
</ul>
</nav>