Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    For this, you could for example use some “Custom CSS” code (on the “Plugin Options” screen of TablePress) like

    .tablepress-id-8 tbody .column-5 {
      color: #00ff00;
      text-decoration: blink;
    }

    (Note that the blinking might not work in all browsers and that blinking text is considered extremely annoying by most people, and has even been known to trigger epileptic seizures in susceptible people. It should be used only in the most extreme circumstances.)

    Regards,
    Tobias

    Thread Starter Craqu

    (@craqu)

    Hello,
    Thank you for support,
    I used your custom css code. the color is changed in column 5, but If I have a match which I loss my prediction I would like to write with black color that word. beacause I want to use green color anly for WIN.
    in other think I used text-decoration: blink; but nothing happened.
    Also I would like to blink only the WIN word in column 5. When I have LOSS word i don’t want to blink.

    Can you help me with that.
    Thank you

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    in that case, you will need to use more fine-grained CSS, like

    .tablepress-id-8 .row-2 .column-5,
    .tablepress-id-8 .row-4 .column-5 {
      color: #00ff00;
    }

    to only change the color for the desired cells.

    The text-decoration: blink; might no longer work in all browsers. In that case, you could switch to the <blink>WIN</blink> HTML tag maybe.

    Regards,
    Tobias

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

The topic ‘Text colour’ is closed to new replies.