Title: TABLE HEADER
Last modified: November 4, 2018

---

# TABLE HEADER

 *  Resolved [planeo8](https://wordpress.org/support/users/planeo8/)
 * (@planeo8)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/table-header-2/)
 * I would like the table header contents to be bold and centered and black…and 
   the same font size as in the body (in this case 14 px)
 * But…I would like the text in the body to be left justified
 * I am using the following CCS for the body to increase the size to 14 px
 * .tablepress-id-7 tbody td {
    font-family: Tahoma; font-size: 14px; color: #000000;}
 * How do I get both the header and the body to display as I want.
 * This is a great plugin…and I appreciate the support everyone provides.
 * Thanks.

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

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/table-header-2/#post-10848570)
 * Hi,
 * thanks for your post, and sorry for the trouble.
 * To change the header like that, please try
 *     ```
       .tablepress-id-7 thead th {
         font-family: Tahoma;
         font-size: 14px;
         color: #000000;
         text-align: center;
         font-weight: bold;
       }
       ```
   
 * Regards,
    Tobias
 *  Thread Starter [planeo8](https://wordpress.org/support/users/planeo8/)
 * (@planeo8)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/table-header-2/#post-10849435)
 * Thanks for the quick response.
 * The code provided appears to do what I requested for the header.
 * BUT…how do I combine it with the code I previously noted in my question.
 * I don’t understand how to do both.
 * Would the combination look like what is below or is there a better way?
 * .tablepress-id-7 thead th {
    font-family: Tahoma; font-size: 14px; color: #000000;
   text-align: center; font-weight: bold; } .tablepress-id-7 tbody td { font-family:
   Tahoma; font-size: 14px; color: #000000; }
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/table-header-2/#post-10849522)
 * Hi,
 * yes, just put them underneath each other, that would be the simples way.
 * You could merge them a little bit, but that doesn’t simplify much:
 *     ```
       .tablepress-id-7 tbody td,
       .tablepress-id-7 thead th {
         font-family: Tahoma;
         font-size: 14px;
         color: #000000;
       }
       .tablepress-id-7 thead th {
         text-align: center;
         font-weight: bold;
       }
       ```
   
 * Regards,
    Tobias
 *  Thread Starter [planeo8](https://wordpress.org/support/users/planeo8/)
 * (@planeo8)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/table-header-2/#post-10849570)
 * Thank you…that works perfectly.
 * Great support!
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/table-header-2/#post-10849644)
 * Hi,
 * no problem, you are very welcome! 🙂 Good to hear that this helped!
 * Best wishes,
    Tobias
 * P.S.: In case you haven’t, please [rate TablePress](https://wordpress.org/support/plugin/tablepress/reviews/#new-post)
   here in the plugin directory. Thanks!

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

The topic ‘TABLE HEADER’ is closed to new replies.

 * ![](https://ps.w.org/tablepress/assets/icon.svg?rev=3192944)
 * [TablePress - Tables in WordPress made easy](https://wordpress.org/plugins/tablepress/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tablepress/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tablepress/)
 * [Active Topics](https://wordpress.org/support/plugin/tablepress/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tablepress/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tablepress/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [7 years, 8 months ago](https://wordpress.org/support/topic/table-header-2/#post-10849644)
 * Status: resolved