• i hope the author will consider wrapping the table in a div tag because currently there is no easy way (AFAIK) to control the size of the table

    this results in a very ugly appearance for a wide table because it runs off the edge of the WP template

    my solution was to wrap the short-code in a div, give it a class (csv2table), then style it like so…

    .csv2table {
        width: 100%;
        overflow: auto;
        height: 1000px;
    }

    this will limit the width to the page content and add scroll bars as needed

    there may be a better solution than hard-coding the height, but i haven’t really poked around yet

    https://wordpress.org/plugins/csv-to-sorttable/

  • The topic ‘table width/height issue and solution’ is closed to new replies.