After adding a <nav class="top-bar">
element to my webpage, I noticed it displayed correctly on desktop computers but appeared as a solid black bar with no menu items when viewed on an iPhone. This issue seems to be specific to the top section of my navigation.
<nav class="top-bar" style="">
<ul class="title-area">
<li class="name"></li>
</ul>
<section class="top-bar-section">
<ul class="left">
<li class="has-dropdown not-click"><a href="#">Orders</a>
<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
<li class=""><a href="orders/new.php">Create New</a></li>
</ul>
</li>
</ul>
</section>
</nav>