Column width in list type

hi there, I can see other replies to my question, but none work on my site.

Is there anyone that can assist? I’d like list_78_cell1 through to 7 to be 10% container width

Here’s one that didn’t work body .gform_wrapper table.gfield_list tr td.gfield_list_78_cell2 {
width: 40px!important;
}

here’s the page where the form is sitting while I troubleshoot css https://alumac.com.au/test-quote/

Try this:

.gfield_list_group_item:nth-child(-n+7) {
    max-width: 10%;
}

Here’s how it looks when applied on your site for me:

Brilliant thank you muchly

1 Like