Targeting a specific form ID, list field and column

Good afternoon, looking to target form ID 54, list field ID 14, and column 3. Would the following be correct, please:

body .gform_wrapper td.gfield_54_list_14_cell3 input {
border: 1px solid red;
width: 10em!important;
}

Changing the width and colour, thanks.

Regards
Steve

This selector will work for both legacy and standard markup…

body .gform_wrapper .gform_body .gform_fields #field_54_14 .gfield_list_14_cell3 input {
    /* rules here */
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.