I'm having trouble allocating a search box in the bootstrap. I'm trying to allocate it in% default%, at the top right-aligned. My intention is that at each screen, I can modify the parameters for the field to work with each type of search like: product, category.
My View navbar
Category
<div class="navbar navbar-header navbar-fixed-top">
<div class="container">
<div class="navbar-collapse collapse">
<div class="nav navbar-nav navbar-right">
<form role="search" class="navbar-form">
<div class="form-group has-feedback">
<input type="text" class="form-control" placeholder="Procurar" />
<span class="form-control-feedback glyphicon glyphicon-search"></span>
</div>
</form>
</div>
</div>
</div>
This way, I can not use the other "buttons" of the% bootstrap default%.
I'm using ASP .NET MVC with Bootstrap.