Forum Discussion
Altera_Forum
Honored Contributor
21 years agoLayout attributes, such as align, generally affect the enclosed elements or the spacing between them.
The particular behavior you are seeing is a symptom of using a horizontal layout in conjunction with an alignment attribute. The current code doesn't interpret this correctly, but you can use layout = "flow"; to achieve the left-alignment you are looking for (I suggest removing the align = "left"; for clarity). This 'flow' layout stacks things horizontally end-to-end from the left. - mfairman