• This is really unprofessional team. I have already raised a query for same issue. But they don’t response at all. Again I’m posting same issue.. hope it should be fix now.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor erdembircan

    (@erdembircan)

    Hello @krishna0122,

    Please update the link of the table and also include the width value you want for that column so we can provide you a custom CSS code for that table.

    Best regards.

    swiftlet

    (@swiftlet)

    @erdembircan

    The table is wider than the handphone screen under mobile view.
    1. I believe one of the problems is because you have a fixed td set as width:100px
    Under responsive mode, since the td width is 100px, if you have an image in the row, the img max-width is 100%.
    .wptb-table-container-0 table td[data-wptb-css-td-auto-width=true]{width:100px}

    Would you please change the 100px to “auto”?

    It could be fixed by:

    “wp-table-builder-frontend.js”
    ORG:
    table td[data-wptb-css-td-auto-width=true]{width:”).concat(l,”px}”),S&&S.appendChild(v))

    NEW:
    table td[data-wptb-css-td-auto-width=true]{width:auto”),S&&S.appendChild(v)

    2. Your javascript incorrectly set the table min-width:XXXpx under mobile view, for instance, XXX is 522px on my screen, which causes the table wider than my mobile screen. Since the min-width is added by js, I can’t modify it without hacking the scripts.

    The table will be working well after removing the min-width under F12 chrome-dev mode. Would you please remove the min-width from the javascript?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Fix table size in mobile view’ is closed to new replies.