html - Different margins of the elements -


i can not understand why mobile version of elements , input select different spacing , length, looks crooked. enter image description here

and yet, mobile version align red button in middle?

you can see live code of site - here

switch of container's classes bootstrap's text-center class , it'll work (tested).

this:

<div class="col-md-offset-5 col-md-6 col-sm-offset-5 col-sm-6" id="d-btn-order">     <input type="button" value="Оформить заказ"            class="btn btn-danger paddbtn"            name="btn-pillow-order" id="btn-pillow-order"> </div> 

is this:

<div class="text-center" id="d-btn-order">     <input type="button" value="Оформить заказ"            class="btn btn-danger paddbtn"            name="btn-pillow-order" id="btn-pillow-order"> </div> 

Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -