Viewing 3 replies - 1 through 3 (of 3 total)
  • I would add some table classes for each table you wish to look diferent. You can use existing ones (from Twitters Bootsrap, check https://getbootstrap.com/2.3.2/base-css.html#tables ) or you can make you own classes. For that you need to add in your custom.css something like this:

    table .class1 tr,td or table.class1 tr,td depending what elements in table you wish to change. For example:

    table .class1 td, th {
    border:1px solid blue;
    }
    th
    {
    background-color:blue;
    color:white;
    }

    and then you need to add class to your table code in the post/page

    <table class="class1" width="600" cellspacing="0px" cellpadding="0px">

    and so on with class2 for table2,….

    Thread Starter tbuckley2013

    (@tbuckley2013)

    I tried what you suggested, and it went from showing color for the table in Published mode, to showing just a blank white table. I may just can the idea of having all of the tables look unique.

    Customizr is built on Bootstrap. YOu might get some clues for better tables here.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Theme: Customizr] Background color for multiple tables on one post’ is closed to new replies.