Hello, I have a page in PHP where I'm using Bootstrap to do a simple search screen.
<div class="container">
<img src="/img/logoSuivi.png" class="img-responsive center-block">
<div class="well col-md-3">
<div class="breadcrumb">
<form class="status">
<fieldset>
<div class="form-group">
<label for="repair-status-search">Ordre de service:</label>
<input class="form-control" id="code" name="code" type="text" placeholder="Ordre de service" value="" onkeypress="return searchKeyPress(event);">
</div>
</fieldset>
</form>
<button class="btn btn-success center-block" id="submit">Recherche</button>
<img src="/img/Preloader.gif" class="loader img-responsive center-block" style="display: none;">
</div>
</div>
</div>
On the page above you can see how it is.
PS : I'm using version 3.3.6
I would like to center horizontally and vertically from the div containing the Well class, how can I do this?
I can not just use the center-block as I used it in the image.