I am trying to have the meter placed beside my password field and not below it, here is the image of it on how it looks right at the moment..
The code that is placing it like this is..
<div class="form-group" id="pwd-container">
<label for="txtPassword" class="control-label col-md-2" id="lblAdministrationAdministratorPassword"><b>Password:</b></label>
<div class="col-md-6">
<input id="txtPassword" type="password" class="form-control" name="password" />
</div>
<div class="col-sm-4">
<div class="pwstrength_viewport_progress"></div>
</div>
</div>
And I am trying to get it to look like this..
JSFiddle
2
Answers
simply add float left and it’s done
You have to separate the div, input and label into separate divs with columns so that all will stay in same row.
Your format should be like below
And use some inline styles to set top position.