• Resolved PhillM

    (@phillm)


    I cannot change the colors of rows.
    I tried creating a custom CSS, but the colors remain the standard colors.
    What am I doing wrong?
    This is the content of my Custom CSS:

    .wp-table-reloaded-ID .even td {
    background-color: #BADCF0;
    }
    .wp-table-reloaded .odd td {
    background-color: #BADCF0;
    }

    .wp-table-reloaded .row-hover tr:hover td {
    background-color: #BADCF0!important;
    }

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

    (@tobiasbg)

    Hi,

    it seems that you want to set the colors of all rows the same, and with that you actually don’t want the alternating row coloring, right? You also don’t seem to want the Row Highlighting effect?
    Well, then just turn off these features on the “Edit” screen of the table, by simply unchecking the corresponding checkboxes. ?? That’s much easier than messing around with the CSS ??

    To then change the background color of the cells, all you need is this “Custom CSS”:

    .wp-table-reloaded td {
      background-color: #BADCF0!important;
    }

    (If this is not what you wanted to achieve, please explain again, and also add the URL of your page with the table. Thanks!)

    Best wishes
    Tobias

    Thread Starter PhillM

    (@phillm)

    Solved the problem – Apparently my Theme was overriding the plug-in settings. ALMOST got it the way I want it

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WP-Table Reloaded] row colors don't change’ is closed to new replies.