Yes, the labels have the class ‘ci-corner-all’, that only has the effect of rounding the corners of the label (the gray area).
the <ul> element has the class ‘ui-multiselect-checkboxes’, so it looks like this:
<ul class="ui-multiselect-checkboxes">
<li>
<label class="ui-corner-all"> ... </label>
</li>
</ul>
It is really difficult to say something without seeing the code, but I have the suspicion that somewhere in your css files there is a style declaration for the ‘label’ element that sets a fixed width for it and makes the text within right aligend, i.e. something like this:
label {
width:100px;
text-align:right;
}
This is often done to style form elements, where a label is followed by a text-field for example, to produce forms like here: http://jeffhowden.com/code/css/forms/
Note that the labels are right aligned and how they are styled further below:
form div label {
display: block;
float: left;
width: 130px;
padding: 3px 5px;
margin: 0 0 5px 0;
text-align: right;
}
More than likely something like this is happening in your case…
Best regards…