Title: CSS Changes Work With One Table Only
Last modified: December 21, 2018

---

# CSS Changes Work With One Table Only

 *  Resolved [hollywoodonlocation](https://wordpress.org/support/users/hollywoodonlocation/)
 * (@hollywoodonlocation)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/css-changes-work-with-one-table-only/)
 * I successfully changed font size with one table, and want to do with another 
   table, but it is not working. Using same code, but just changed table ID. Table“
   7” has no effect.
 * Ideas? See codes below.
    —-
 * }
    .tablepress-id-9 tbody td { font-family: Tahoma; font-size: 11px; color: #
   ff0000; }
 * tablepress-id-7 tbody td {
    font-family: Tahoma; font-size: 11px; color: #ff0000;}

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

 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/css-changes-work-with-one-table-only/#post-11020316)
 * Hi,
 * thanks for your post, and sorry for the trouble.
 * You have forgotten the `.` (period) before `tablepress-id-7`. Once you add that,
   everything should be fine.
 * Note that instead you could use a shorter piece of code:
 *     ```
       .tablepress-id-7 tbody td,
       .tablepress-id-9 tbody td,
       .tablepress-id-13 tbody td {
         font-family: Tahoma;
         font-size: 11px;
         color: #ff0000;
       }
       ```
   
 * would for example change the font in tables 7, 9, and 13 at once.
 * Regards,
    Tobias
 *  [mibtp](https://wordpress.org/support/users/mibtp/)
 * (@mibtp)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/css-changes-work-with-one-table-only/#post-11022560)
 * Thank you. Worked!
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [7 years, 4 months ago](https://wordpress.org/support/topic/css-changes-work-with-one-table-only/#post-11023591)
 * 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/)
   here in the plugin directory. Thanks!

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

The topic ‘CSS Changes Work With One Table Only’ 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/)

 * 3 replies
 * 3 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [7 years, 4 months ago](https://wordpress.org/support/topic/css-changes-work-with-one-table-only/#post-11023591)
 * Status: resolved