pull dl tag in bootstrap to the left -
how can override dl tag in bootstrap not have width (by default has width of 160). want dt field on left. also, how can add more white space between 2 rows? 
i tried override width didn't work. http://jsfiddle.net/mgcdu/6357/embedded/result/
example without changes http://jsfiddle.net/mgcdu/6356/embedded/result/
try this:
.dl-horizontal dt{     text-align: left;     margin-bottom: 1em;     width: auto;     padding-right: 1em; }  .dl-horizontal dd{     margin-left: 0;     margin-bottom: 1em; } 
Comments
Post a Comment