• Resolved alexlinders

    (@alexlinders)


    Hi,

    I’m trying to color-code a specific cell and the code doesn’t seem to be working. It’ll work for the row, but it appears the column code isn’t allowing it through when I change it to apply to columns. I’ve tried columns by number and letter thinking that might be the switch but nope. Here’s the code:

    .tablepress-id-19 .row-2 .column-2 td {
    background-color: #01ABBA;
    text-align: center;
    }

    The page I need help with: [log in to see the link]

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

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    When changing specific cells for columns, you need to remove the td from the cells, as the .column-2 is actually a CSS class of that. So, please try again with

    .tablepress-id-19 .row-2 .column-2 {
      background-color: #01ABBA;
      text-align: center;
    }

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘Cell Column Edits Not Working’ is closed to new replies.