• Resolved tprime76

    (@tprime76)


    I used the custom CSS area to add the code below to change the background of the header to a light blue / dark blue combination but it has not changed on the table. I have cleared the cache so that isn’t the issue. It seems like I have done everything your documentation indicates.. I tried it with the table specific selector and then tried to change the table default, but none of it worked. Thanks

    http://www.tomandemily.com/?page_id=4
    Wordpress 2.9.2

    .wp-table-reloaded th, .wp-table-reloaded .sorting {
      background-color: #3300ff;
    }
    .wp-table-reloaded .sorting_asc, .wp-table-reloaded .sorting_desc {
      background-color: #000066;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    can you start over with a clean “Custom CSS” textarea?
    There seem to be some leftovers in the code from a previous plugin installation.
    So, please empty the entire “Custom CSS” textarea and save the changes.
    Your table should then have the default styling of the latest plugin version (should not differ too much from the current styling).
    Then try adding your code from above again, please.

    Best wishes,
    Tobias

    Thread Starter tprime76

    (@tprime76)

    Thanks, tried that and ended up with the same almost unreadable light blue background for the header. The Custom CSS textarea is now empty except for the

    .wp-table-reloaded th, .wp-table-reloaded .sorting {
      background-color: #3300ff;
    }
    .wp-table-reloaded .sorting_asc, .wp-table-reloaded .sorting_desc {
      background-color: #000066;
    }

    Hi,

    ah, great. Now I was able to figure it out 🙂
    There are now two commands with the same precedence, so that creates a conflict.

    By adding the “!important” marker to your CSS code, you can now fix it:

    .wp-table-reloaded th, .wp-table-reloaded .sorting {
      background-color: #3300ff!important;
    }
    .wp-table-reloaded .sorting_asc, .wp-table-reloaded .sorting_desc {
      background-color: #000066!important;
    }

    Best wishes,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘[Plugin: WP-Table Reloaded] Header BG color not changing’ is closed to new replies.