Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    For this, you can use similar code as for changing the background color (see https://tablepress.org/faq/change-background-color-table-head-row/ ). You will just have to use the color property, like

    .tablepress thead th,
    .tablepress tfoot th {
    	color: #ff0000;
    }

    Regards,
    Tobias

    Hi
    I have a question ? I would like to change color of text in header row .
    What can i do ?
    Tks and Best Regards.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    That’s exactly what I answered above ?? Just try that code in the “Custom CSS” textarea on the “Plugin Options” screen of TablePress.
    If it doesn’t work, add the !important keyword, like

    color: #ff0000 !important;

    to the code.

    Regards,
    Tobias

    Hi Tobias
    Tks very much. It’s work.
    I have put 2 code to this:

    .tablepress thead th,
    .tablepress tfoot th {
    	background-color: #20CBBC;
    }
    
    .tablepress thead th,
    .tablepress tfoot th {
    	color: #ffffff !important;
    }

    Then i have a nice table .
    Tks again

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    yes, that should fix both the background color and the text color. If you want, you can combine that into one piece of code:

    .tablepress thead th,
    .tablepress tfoot th {
    	background-color: #20CBBC;
    	color: #ffffff !important;
    }

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Header colours’ is closed to new replies.