When the browser is resized, the mobile menu appears at 568x320, which is the default breakpoint.
https://i.sstatic.net/ZSbiq.jpg
I would like to create a breakpoint around 900px to address the issue with the menu being too large as shown in the image below. However, I am unsure of how to do this despite spending 5 hours trying. Any assistance would be greatly appreciated. Link to Fiddle. Thank you.
<nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="name">
<h1><a href="#">My Site</a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a>
</li>
</ul>
<section class="top-bar-section">
<!-- Right Nav Section -->
<ul class="right">
<li class="has-dropdown"> <a href="#">Right Button Dropdown</a>
<ul class="dropdown">
<li><a href="#">First link in dropdown</a>
</li>
<li class="active"><a href="#">Active link in dropdown</a>
</li>
</ul>
</li>
</ul>
</section>
</nav>