I am currently working on an application with Bootstrap 3 in Dreamweaver and I am using panels to separate some data and functions in a menu.
As I know, when using grids on the page the page is divided into 12 possible columns, giving the programmer the possibility of separating the width of the body of the page up to those 12 columns. The problem is that I am using panels with a width of 6 and it does not separate them properly.
I hope you can help me or give me an alternative. I leave the code of my project.
<div class="container">
<h1 class="text-center">Perfil de usuario</h1>
<hr>
<div class="row col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="panel panel-info">
<div class="panel-heading text-center">Datos personales</div>
<div class="panel-body">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<img class="img-responsive center-block" src="images/icons/id-card-1.png" width="150" height="150" alt=""/>
<hr>
</div>
<div class="col-lg-5 col-md-5 col-sm-12 col-xs-12 text-center">
<p class="text-muted"><strong>Nombre(s): </strong></p>
<p>Alex</p>
<p class="text-muted"><strong>Apellidos: </strong></p>
<p>Apellidos</p>
<p class="text-muted"><strong>Fecha de nacimiento: </strong></p>
<p>22/11/1999</p>
</div>
</div>
</div>
</div>
<div class="row col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="panel panel-success">
<div class="panel-heading text-center">Configuracion de la cuenta</div>
<div class="panel-body">
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<img class="img-responsive center-block" src="images/icons/switch-5.png" width="150" height="150" alt=""/>
<hr>
</div>
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12 text-center">
<p></p>
<div class="btn-group-vertical">
<button type="button" class="btn btn-default"><span class="glyphicon glyphicon-lock"></span> Cambiar contraseña</button><br>
<button type="button" class="btn btn-primary"><span class="glyphicon glyphicon-user"></span> Editar foto de perfil</button><br>
<button type="button" class="btn btn-info"><span class="glyphicon glyphicon-info-sign"></span> Editar estado</button><br>
</div>
<p></p>
</div>
</div>
</div>
</div>
</div>