Is there a way to change the display of items in the collapsed navbar so that they appear next to each other rather than in a column? You can see how it currently looks here: Navbar collapsed. My goal is to have the image displayed next to the username instead.
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="ml-auto navbar-nav border border-primary rounded" style="background:blue">
<li class=" nav-item active">
<a class="nav-link" href="#">Hi, Shadow <span class="sr-only">(current)</span></a>
</li>
<li id="something1" class="mt-auto mb-auto nav-item">
<img id="something" src="images/space_stars_blue_free_wallpaper.jpg" class="img-fluid rounded-circle "
alt="..." width="50" height="50">
</li>
</ul>
</div>