• Resolved mavericx

    (@mavericx)


    Hi Tobias,

    Great plugin!! Thank you so much for making this!

    I was wondering if there is a way I could “bold” all the text in a certain column/row? Or even do other things like “italicize” (did i say that correctly? lol), underline, etc.

    Any help definitely appreciated.

    Thanks again!

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

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Yes, this is possible with CSS code.

    For example, add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:

    .tablepress-id-123 .column-4 {
      font-weight: bold;
    }
    .tablepress-id-456 .column-2 {
      text-decoration: underline;
    }
    .tablepress-id-123 .row-4 td {
      font-style: italics;
    }

    (with appropriate table IDs and row/column numbers).
    (Also note that you need that td in the code for rows, but not for columns.)

    For other styling examples, I recommend the TablePress FAQ page at https://tablepress.org/faq/

    Regards,
    Tobias

    Thread Starter mavericx

    (@mavericx)

    oh man, that’s so simple! haha

    One last thing…can I change text size?

    Thx Tobias, you the man!!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    yes, the corresponding CSS command would be

    font-size: 14px;
    

    Regards,
    Tobias

    Thread Starter mavericx

    (@mavericx)

    Thanks again for your help Tobias!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! ?? Good to hear that this helped!

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Is there a way to “bold” the contents of a column/row?’ is closed to new replies.