I\'m using Bootstrap for the first time, and am having a lot of trouble aligning this form-horizontal to the left.
The list items are horizontal, as they should be, but
If you are saying that your problem is how to left align the form labels, see if this helps: http://jsfiddle.net/panchroma/8gYPQ/
Try changing the text-align left / right in the CSS
.form-horizontal .control-label{ /* text-align:right; */ text-align:left; background-color:#ffa; }
Good luck!