I have a straightforward Bootstrap Navbar that contains just a few items. When the width is less than 768, it displays in two rows. How can I make both items display in a single row at all widths without using the collapse feature?
<nav class="navbar navbar-default">
<div class="row">
<ul class="nav navbar-nav">
<li class=""><a href="#">Item 1</a></li>
<li><a href="#">Item 2</a></li>
</ul>
</div>
</nav>