Title: [Plugin: Easy Table] Bold formatting doesn&#039;t work
Last modified: August 20, 2016

---

# [Plugin: Easy Table] Bold formatting doesn't work

 *  Resolved [babyatom](https://wordpress.org/support/users/babyatom/)
 * (@babyatom)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-easy-table-bold-formatting-doesnt-work/)
 * Here’s my code:
    [table caption=”Just test table”] no,head1,head2,head3 1,row1col1,
   row1col2,row1col3 **2,row2col1,row2col2,row2col3** [/table] In the resulting 
   table the letter ‘2’ is bold but the rest of the row isn’t… but it should be,
   right?
 * [http://wordpress.org/extend/plugins/easy-table/](http://wordpress.org/extend/plugins/easy-table/)

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

 *  Plugin Author [takien](https://wordpress.org/support/users/takien/)
 * (@takien)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-easy-table-bold-formatting-doesnt-work/#post-3121744)
 * use attr style on each cell.
 *     ```
       [table caption="Just test table"]
       no,head1,head2,head3
       1,row1col1,row1col2,row1col3
       2[attr style="font-weight:bold"],row2col1[attr style="font-weight:bold"],row2col2[attr style="font-weight:bold"],row2col3[attr style="font-weight:bold"]
       [/table]
       ```
   
 * it may looks messy.
    alternatively, use CSS for styling. add this to the end 
   of style.css on your WordPress theme directory.
 *     ```
       table.easy-table tr:nth-child(3) {
          font-weight:bold;
       }
       ```
   
 * note:
    `nth-child(3)` is for third row. if you want to bold every odd row use
   nth-child(odd).
 *     ```
       table.easy-table tr:nth-child(odd) {
          font-weight:bold;
       }
       ```
   
 *  Thread Starter [babyatom](https://wordpress.org/support/users/babyatom/)
 * (@babyatom)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-easy-table-bold-formatting-doesnt-work/#post-3121745)
 * Cool – thanks.

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

The topic ‘[Plugin: Easy Table] Bold formatting doesn't work’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/easy-table_aeb393.svg)
 * [Easy Table](https://wordpress.org/plugins/easy-table/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/easy-table/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/easy-table/)
 * [Active Topics](https://wordpress.org/support/plugin/easy-table/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/easy-table/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/easy-table/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [babyatom](https://wordpress.org/support/users/babyatom/)
 * Last activity: [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-easy-table-bold-formatting-doesnt-work/#post-3121745)
 * Status: resolved