Since the labels are inline elements, they cannot use the width property. You can get around this by making them "inline-block":You then need to set the first label back to inline so it can take the width it needs to stay on one line.Code:#wAttrib-8 label {display: inline-block; width: 5em;} #wAttrib-8 #attrib-8-13+label {display: inline;}
...Or
#wAttrib-8 #attrib-8-13+label {display: none;}
if you want that hidden.
Bookmarks