Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #689894

    Hello!

    I just noticed an issue with tables. When I have the Table Purpose set to “Use the table to display tabular data” and the Responsive Styling set to “Make Entire Table Scrollable” the text does not wrap with the column width when the browser window is reduced. Any thoughts on how to resolve this?

    Thanks so much!

    #690824

    Any thoughts on this?

    #691475

    Hi,

    Thank you for using Enfold.

    That is the default style or behaviour of the table if you set the Responsive Styling to “scrollable”. It will not inherit the width of the parent container, in this case, the column.

    Best regards,
    Ismael

    #693188

    I think there might be a misunderstanding of the issue. When the table is condensed even if I set the table to scroll able the columns still change sizes. When that happens the text does not wrap in the columns creating major display issues when viewing tables on mobile devices. See attached image.

    Any thoughts?

    #694399

    Hi,

    I see. Please add this in the Quick CSS field:

    @media only screen and (max-width: 989px) {
    .responsive .avia_scrollable_table .avia-data-table > thead > tr > th, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > th, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th, .responsive .avia_scrollable_table .avia-data-table > thead > tr > td, .responsive .avia_scrollable_table .avia-data-table > tbody > tr > td, .responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td {
        white-space: normal;
    }
    }

    Best regards,
    Ismael

    #695403
    #696517

    Hi,

    Following code should help

    @media only screen and (max-width: 768px) {
    .avia_scrollable_table .avia-table {
        width: auto;
    }}

    Best regards,
    Yigit

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.