• Resolved Erin

    (@emurph42)


    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

    (@okaythemes)

    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 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.