Likert field isnt behaving
Can someone please look at whythe 5 labels are not displaying - the entry comes throgh with correct answersheres the form page Vic Listening Survey 2026 - Farmers for Climate Action
@boxercox Basically your site is having CSS as below, Probably this is getting applied here. This is not related with gravity form but with the CSS applied on your website.
table tr th:not(:first-child) {
display: none
}
Solutions, can you add following CSS into your theme setting.
.gform_wrapper table tr th:not(:first-child) {
display: table-cell
}
Thank You
