I am currently working on a fluid design layout, where I need to place form group elements inside the row-fluid with one specific condition - they must be aligned to the right side.
<div class="row-fluid" style="background-color: #332619; color: #fff !important; padding-top: 25px; padding-bottom: 10px">
<div class="col-lg-12">
<div class="form-group pull-right">
<input type="text" class="form-control" id="login_Email" placeholder="Email">
</div>
<div class="form-group pull-right">
<input type="password" class="form-control" id="login_Password" placeholder="Password">
</div>
</div>
</div>
Fiddle example can be found at the following link:
However, in my HTML page, the form-group elements are not enclosed within the row-fluid div as shown in the image below.