Hi,

I have used a CCK Select Other field on my Account details / Registration form (the classic 'where did you hear about us?' selector). However going to field display and selecting for the field label has no effect.

Also the label is in italics unlike all other field labels.

You can fix these both with CSS, but really the form element should be output as per other elements, imho. Here's a (1 of many) CSS fix:

/* remove italics */
.form-type-select em.placeholder  { font-style: normal !important; }

/* Hide label completely */
.form-type-select em.placeholder  { 
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px); 
}

Comments

mradcliffe’s picture

Version: 7.x-1.0 » 7.x-1.x-dev

Thanks. Yes, this should behave like other fields.

mradcliffe’s picture

Status: Active » Postponed (maintainer needs more info)

I can fix the italics title issue, but I do not see where in Field UI you can hide the Field label on the Widget form.

mradcliffe’s picture

Status: Postponed (maintainer needs more info) » Closed (works as designed)