Viewing 1 replies (of 1 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Those last four columns are not actually missing. They are just not part of the visible area on the screen — because they don’t fit.
    The amount of content in your table (especially the long words in some cells that the browser can not word-wrap), and the rather big font size simply force the table to have a very large width. And that simply exceeds the available width on the screen, so that some columns are simply not visible.

    To change this, you could for example reduce the font size by adding this to the “Custom CSS” textarea on the “Plugin Options” screen:

    .tablepress {
      font-size: 14px;
    }

    Another idea is to use “Horizontal Scrolling” for the table, by either checking the corresponding checkbox on the “Edit” screen of the table, or by also trying a CSS solution for this:

    #tablepress-2_wrapper {
      overflow-x: auto;
    }

    In the worst case, you would have to remove content from the table.

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘How Many Columns?’ is closed to new replies.