Nested forms formatting on mobile

Hi,

I have created an online store order form that is almost dialed except for the mobile view. When items are added, the summary overlaps the text into garble. Is there a simple workaround to have this be legible? Thanks!

Hi Wendy,

This looks like a CSS conflict with your Theme. Please add the CSS below to your website to resolve this issue.

@media only screen and (max-width: 760px), (min-device-width: 760px) and (max-device-width: 1024px) { 	#content-area form:not(.gpnf-disable-responsive-table) table td { 		padding: 1rem 1rem 1rem 50%; 	} } 

Best,

That worked, thank you @samuel !

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