Title: Making a table
Last modified: August 30, 2016

---

# Making a table

 *  Resolved [Erin](https://wordpress.org/support/users/emurph42/)
 * (@emurph42)
 * [11 years ago](https://wordpress.org/support/topic/making-a-table-1/)
 * The Style Guide for Editor on the Array website shows a table style that is available.
   However, when I am creating a page or post I cannot find an option for inserting
   such a table. How could I create a table?
 * As someone with limited WordPress/CSS experience, any help is appreciated!

Viewing 1 replies (of 1 total)

 *  Theme Author [ArrayHQ](https://wordpress.org/support/users/okaythemes/)
 * (@okaythemes)
 * [11 years ago](https://wordpress.org/support/topic/making-a-table-1/#post-6207336)
 * Hi Erin,
 * We don’t have any way to add tables via the post editor, we simply provide the
   styling for forms on your site. However, you could copy and paste the following
   table code into the [Text view](http://cl.ly/image/1s1c1f1m413S) of your post
   editor to create a table. Once it’s in there you can change the values to what
   you want.
 *     ```
       <table>
       	<thead>
       		<tr>
       			<th>Beatle</th>
       			<th>Instrument</th>
       			<th>Song</th>
       		</tr>
       	</thead>
   
       	<tbody>
       		<tr class="odd">
       			<td>John Lennon</td>
       			<td>Guitar</td>
       			<td>A Day In the Life</td>
       		</tr>
       		<tr class="even">
       			<td>George Harrison</td>
       			<td>Guitar</td>
       			<td>Old Brown Shoe</td>
       		</tr>
       		<tr class="odd">
       			<td>Paul McCartney</td>
       			<td>Bass</td>
       			<td>Helter Skelter</td>
       		</tr>
       		<tr class="even">
       			<td>Ringo Starr</td>
       			<td>Drums</td>
       			<td>Don't Pass Me By</td>
       		</tr>
       	</tbody>
       </table>
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Making a table’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/editor/1.1.8/screenshot.png)
 * Editor
 * [Support Threads](https://wordpress.org/support/theme/editor/)
 * [Active Topics](https://wordpress.org/support/theme/editor/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/editor/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/editor/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [ArrayHQ](https://wordpress.org/support/users/okaythemes/)
 * Last activity: [11 years ago](https://wordpress.org/support/topic/making-a-table-1/#post-6207336)
 * Status: resolved