Scroll down to the Terms & Conditions section near the bottom of the page and there are 6 points that are in an OL, but no numbers. I’ve tried enforcing the CSS, but nothing I do will display the point numbers. Should look like this: htps://mosmanswimcentre.com.au/departure-request-form/ (uses a different plugin, but I have to use Gravity Forms)
WP, the theme and plugins are all up to date. I have tried in all browsers.
Can anyone help with a fix?
Thanks,
Simon
It looks like the issue is that your theme is setting the display of li’s to block, so if you just switch that over to list-item, it should work. I saw this selector, which I think is your own custom CSS, and added the list-item display:
body .gform_wrapper .gform_body .gform_fields .gfield_html ol#DepFormTeeAndCees li {
list-style: number !important;
display: list-item;
}
That got the numbers displaying for me using the console.
]]>Thanks again, much appreciated!
Cheers,
Simon