Wrapping text in a query table

I would like query results displayed as a table to wrap long text in each cell. Currently, text is cutoff. I’ve seen some others have been able to wrap text, but I cannot locate how. Any ideas?

Thanks,
Steve

You can insert

td {
    white-space: pre-wrap !important;
}

in custom.css to wrap the text in query tables, see the css code given here: Quote storage system using queries and smartblocks.

1 Like

Thank you! Huge help!

1 Like