Likert scale showing 5 options but only the lables for 2 an those are 1 and 5 - Looks like a CSS issue - can someone help please

Likert field isnt behaving

Can someone please look at whythe 5 labels are not displaying - the entry comes throgh with correct answers

heres 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