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

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    For this, you can also use CSS code and maybe some extra HTML.
    This for example increases the font size of a single cell and changes its color:

    .tablepress-id-123 .row-3 .column-2 {
      font-size: 18px;
      color: #ff0000;
    }

    Regards,
    Tobias

    How would you add Bold?

    I tried making the category titles blue, but it didn’t work

    https://www.off-grid-insights.com/4-2/cost-vitacost-vs-amazon/

    do you happen to know what the 4-2 means… I never saw that before.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    there’s a small error in your CSS: You can not have a comma right before the opening curly brace, i.e. no , before the {.

    Please try again with

    .tablepress-id-1 .row-3 column-1 {
    	font-size: 18px;
    	color: #3399FF;
    	font-weight: bold;
    }

    I also added boldness to that ??

    For that issue with the 4-2: No, sorry, I have no idea where that’s coming from. It might be something in your “Permalinks” setting in the WordPress options.

    Regards,
    Tobias

    I’m working on figuring out FTP for my backups, so I’ve been away from my table.

    My other question is: do I have to do a separate entry for each category title? I can’t put the line numbers all in with commas to separate them?

    I hope you are having lovely dreams, since I think it must be an entirely different time where you are.

    Karen

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi Karen,

    yes, we are probably about 9 hours apart ??

    Yes, each category title will need an extra line, but as the individual commands are the same, things can indeed be shortened a bit by using a comma-separated list. However, the full selectors will have to be part of the code, e.g.

    .tablepress-id-1 .row-3 column-1,
    .tablepress-id-1 .row-3 column-2,
    .tablepress-id-1 .row-5 column-1,
    .tablepress-id-1 .row-5 column-2 {
    	font-size: 18px;
    	color: #3399FF;
    	font-weight: bold;
    }

    Regards,
    Tobias

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘How To Edit Fonts: Color & Sizes’ is closed to new replies.