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

    (@tobiasbg)

    Hi,

    thanks for your question.

    The best way to do this is to use some CSS code. Both the title (or I call it name) and description have a CSS class that can be used.
    For example, to change the font size of the name, you would use

    .tablepress-table-name {
      font-size: 16px;
    }

    To change that of the description, you can use

    .tablepress-table-description (
      font-size: 16px;
    }

    If you only want to do this for specific tables, the first line needs to be changed to

    .tablepress-table-name-id-123 {
    or
    .tablepress-table-description-id-123 (

    respectively. The 123 has to be changed to the desired table ID.

    All of these need to be added to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress.

    Does this help?

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Change the font/size of the table title and description?’ is closed to new replies.