Title: Please help me format table cell widths
Last modified: August 19, 2016

---

# Please help me format table cell widths

 *  Resolved [sandyclifton2](https://wordpress.org/support/users/sandyclifton2/)
 * (@sandyclifton2)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/please-help-me-format-table-cell-widths/)
 * I am having the hardest time trying to get my table to do what I want it to..
   I just need it to have even size cells.. and fit properly within the space I 
   have. The columns need to move over to the left and all adjust to make it look
   even and right. the site is [http://www.cliftondesigns.com](http://www.cliftondesigns.com)
   thanks! PLEASE help me.

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

 *  [Darrell Schauss](https://wordpress.org/support/users/darrellonsite/)
 * (@darrellonsite)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/please-help-me-format-table-cell-widths/#post-1606850)
 * I dont like tables but…
 * The table is 655w. The two image columns will be 120w each because of the graphics
   all being 120w. So 655 – 120 – 120 = 415. Two more columns left to use the 415
   of space. 415 / 2 = 207.5. So give each column of text 200 or 205px width.
 *     ```
       <table width="655">
       <tbody>
       <tr>
       <td width="120">
       <img >
       </td>
       <td width="200">
       text
       </td>
       <td width="120">
       <img >
       </td>
       <td width="200">
       text
       </td>
       </tr>
       .....
       ```
   
 * Only need to apply it to the first row, rest follows. I would convert what I’ve
   shown into css by given class to the TDs and referencing them in style.css
 * Align all the text images to the top. This is good for css to apply to all tables
   like this.
    `table td {vertical-align:top;}`
 * CSSified
 *     ```
       table td {vertical-align:top;}
       table#services{width:655px;}
       table#services td.graphic{width:120px;}
       table#services td.text{width:200px;}
       ```
   
 *     ```
       <table id="services">
       <tbody>
       <tr>
       <td class="graphic">
       <img >
       </td>
       <td class="text">
       text
       </td>
       <td class="graphic">
       <img >
       </td>
       <td class="text">
       text
       </td>
       </tr>
       .....
       ```
   
 *  Thread Starter [sandyclifton2](https://wordpress.org/support/users/sandyclifton2/)
 * (@sandyclifton2)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/please-help-me-format-table-cell-widths/#post-1606852)
 * Do you know how to do that without tables and be how it is supposed to be?
 *  Thread Starter [sandyclifton2](https://wordpress.org/support/users/sandyclifton2/)
 * (@sandyclifton2)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/please-help-me-format-table-cell-widths/#post-1606854)
 * I am not doing this right.. grrr.. can you email me? [sandyclifton2@yahoo.com](https://wordpress.org/support/topic/please-help-me-format-table-cell-widths/sandyclifton2@yahoo.com?output_format=md)
   thanks!!!

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

The topic ‘Please help me format table cell widths’ is closed to new replies.

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 3 replies
 * 2 participants
 * Last reply from: [sandyclifton2](https://wordpress.org/support/users/sandyclifton2/)
 * Last activity: [15 years, 10 months ago](https://wordpress.org/support/topic/please-help-me-format-table-cell-widths/#post-1606854)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
