Hi,
thanks for your post, and sorry for the trouble.
You have two options for this, depending on how much text you want to bold.
The easy way is to wrap the text in HTML <strong>
tags, e.g.
<strong>This will be bold.</strong>
You can type this in or use the button in the “Advanced Editor” (reachable via the button below the table input fields or by holding the “Shift” key while clicking into a cell).
The second option is to use CSS code, which works best when you want to make entire rows or columns bold. For example, you could add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress to make the entire second column of table 123 bold:
.tablepress-id-123 .column-2 {
font-weight: bold;
}
Regards,
Tobias