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

    (@tobiasbg)

    Hi,

    this is not possible automatically, but with some “Custom CSS” code. For a 3-column table, this would like this this (for table ID 123 in this example):

    .wp-table-reloaded-id-123 td,
    .wp-table-reloaded-id-123 th {
      width: 33% !important;
    }

    Regards,
    Tobias

    Thread Starter mako2

    (@mako2)

    Dear Tobias,

    Thank you for your quick response.

    What custom CSS do I need to use to have the text in the columns aligned in the center instead of right?

    Thanks!

    MK

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    to align the text in the cells in the center, you could use

    .wp-table-reloaded-id-123 td,
    .wp-table-reloaded-id-123 th {
      text-align: center !important;
    }

    Regards,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WP-Table Reloaded] Width of the columns’ is closed to new replies.