Support » Theme: Customizr » Tabledesign (no childtheme)

  • hi there,

    i thought that the individual css box overrides/complements the themes origin css.

    i want to use a different design for this table: http://www.tc-erpel.de/wordpress/?page_id=157 (second table: platzbelegung) and placed the following in the individual css box:

    .courtboardstil {
    border: thin solid #CCCCCC;
    font-weight: bold;
    font:Arial, Helvetica, sans-serif;
    font-size:10px;
    color: #000000;
    background-color: #FFFFFF;
    }
    .courtboardstil-blocked {
    border: thin solid #CCCCCC;
    font-weight: bold;
    color: #000000;
    background-color: #FF6666;
    }
    .courtboardstil-free {
    border: thin solid #CCCCCC;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #EEEEEE;
    }

    obviously with no result 😉

    a hint (without using child themes) out there?

    greetings
    pat

Viewing 2 replies - 1 through 2 (of 2 total)
  • You thought right,
    but you need stronger selectors, so more specificity :D.
    So prepend:
    table tr td to those rules, like:
    table tr td.courtboardstil
    and so on.

    p.s.
    FYI font:Arial, Helvetica, sans-serif; isn’t a correct rule, this

    font-family :Arial, Helvetica, sans-serif;

    yes.

    Thread Starter ionee23

    (@ionee23)

    great, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Tabledesign (no childtheme)’ is closed to new replies.