How can I make text wrap on mobile view?

Hi – can someone please help with the mobile version of this page? The text continues on forever, instead of wrapping appropriately. I imagine it’s quite an easy fix that I just can’t figure out on my own.

https://www.illuminate-food.com/pages/produce-guide

1 Like

@sventricelli

Please add the following code at the bottom of your assets/theme.scss.liquid file.

@media screen and (max-width: 640px){
.Rte table td { white-space: normal !important; }
}

Hope this works.

Thanks!

It worked! Thank you so much.

1 Like