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

    (@tobiasbg)

    Hi,

    thanks for your question and sorry for the trouble!

    Most likely, your theme is adding own CSS code to the page, that overwrites this. To find out more, I’d need to take a look at the page with the table. Could you therefore please post a link? Thanks!

    Regards,
    Tobias

    Thread Starter robgon1971

    (@robgon1971)

    Here is,

    http://isabelrico.es/prueba2/

    Thanx for your quick reply.

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for the link.

    To change the link color, you can use “Custom CSS” like

    .tablepress-id-1 a,
    .tablepress-id-3 a {
        color: #00ff00;
    }

    Regards,
    Tobias

    Thread Starter robgon1971

    (@robgon1971)

    Great, works fine. But, just another question, this code applies to the hole table but is possible to apply it just to one cell, row or column?

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    good to hear that this works!

    Yes, you can do that, too:

    One row:

    .tablepress-id-3 .row-3 a {
        color: #00ff00;
    }

    One column:

    .tablepress-id-3 .column-3 a {
        color: #00ff00;
    }

    One cell:

    .tablepress-id-3 .row-3 .column-2 a {
        color: #00ff00;
    }

    Regards,
    Tobias

    Thread Starter robgon1971

    (@robgon1971)

    Awesome, it works prefectly.

    Thank you very much.

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! 🙂
    Good to hear that this helps!

    Best wishes,
    Tobias

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

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