Unfortunately due to other commitments, we are no longer able to provide support for these themes.

All our themes are now free and can be downloaded by anyone to use/modify however they wish.

We want to thank all our users for their support over the years. All the best in 2020 and beyond.

Table are not responsives

Hi.

Why my tables are not responsives? How i can do for render the tables responsive. They not adjust in mobile or tables.

Example here.

Comments

  • Options
    Mark_HodderMark_Hodder Administrator, Lifetime Member
    Hi, tables display very badly on mobile in general.

    You can force it a bit by adding CSS like:
    @media only screen and (max-width: 760px) {
    table {
      border-collapse: collapse;
      margin: 0;
      padding: 0;
      width: 100%;
      table-layout: fixed;
    }
    }
    However your probably better off avoiding tables all together if mobile is a concern.
    Need Additional Help?
    - Check out the Resource Center for helpful tutorials and hints.


    image
This discussion has been closed.