<nav id="NavbarMaster" class="navbar NavCompression">
<!-- style="min-height:100px;" -->
<div id="navToggler" class="container-fluid TitleBG TitleHeight">
<div id="navopener" class="Pointer" style="position:fixed;top:0;left:0;right:20%;bottom: calc(100% - 50px);background-color:transparent;"></div>
<div class="navbar-header">
<p class="navbar-brand WhiteText standardBtn Pointer">My Area</p>
</div>
<div class="navbar-form navbar-right">
<div class="form-group">
<input id="txtQuickSearchV2" type="text" class="form-control" placeholder="Search" name="search" />
</div>
<button id="btnQuickFind" type="submit" class="btn btn-default">Go</button>
</div>
</div>
</nav>
I am facing an issue with the alignment of the 'Go' button and search box in the above navbar
. When it resizes to mobile view, they move to separate lines instead of staying aligned right. I believe the navbar-right
class should handle this, but it's not working as expected. How can I keep them all in one line?
All the non-bootstrap classes are used for cosmetic purposes such as colors, etc.
EDIT: