• Resolved marciaivey

    (@marciaivey)


    Is it possible to enter a code into the Plugin Options of tablepress to modify particular rows of my tables with different font colors?

    https://biz130.inmotionhosting.com/~texasa13/?page_id=204

    On this link, I’ve seen how to highlight a particular row, but not change the font color of that row. I know the highlights alternate automatically, so just wondering if it’s an editable feature as long as I identify specifically as in the code below:

    .tablepress-id-22 .row-12 .column-1 {
    background-color: #C11B17;
    }

    .tablepress-id-22 .row-12 .column-2 {
    background-color: #C11B17;
    }

    Thanks for any help you can provide! ??

    Marcia

    https://www.ads-software.com/extend/plugins/tablepress/

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

    (@tobiasbg)

    Hi Marcia,

    from what I can see in that link, you were already successful, right? ??

    The easiest way to change the font color of a single row, would be this:

    .tablepress-id-22 .row-12 td {
      color: #ff0000;
    }

    That way, you don’t have to duplicate the code again for each column.

    Regards,
    Tobias

    Thread Starter marciaivey

    (@marciaivey)

    Thanks, Tobias. Yes, I was successful, but wasn’t able to re-post my success that day and forgot to come follow-up on this earlier. Thanks, always, for your assistance with coding shortcuts and modifications.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! Great to hear that this helped, even after you already found a solution!

    Best wishes,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Tablepress- can I change font (not highlight) color for particular rows?’ is closed to new replies.