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

    (@tobiasbg)

    Hi,

    thanks for your question.

    The best way to do that would be to use the second approach that is explained in the answer to the question “How can I highlight certain cells or their content?” in the TablePress FAQ at https://tablepress.org/faq/
    Basically, you’d come up with two different CSS classes (e.g. “heading” and “text”) and apply those to the text in the cell by wrapping it in an HTML <span> tag. Then you could apply the different fonts to the different CSS classes via Custom CSS, like

    .tablepress .heading {
    	font-face: Verdana;
    }
    .tablepress .text {
    	font-face: Arial;
    }

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Using two fonts in teh same table’ is closed to new replies.