How to create a table for WordPress page?
-
How to create a table for wordpress???
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You can use the Text Editor to add an HTML table to your blog posts or pages. If you aren’t familiar with HTML tables, you may want to check out this page for more information: W3 Schools: HTML table tag
-
Thanks rachelmcr!!
This is my first code ever and I’m loving it! Theres one more thing…. How do I add color to my columns? And how do I change the size on my font? Thanks in advance!
<table border=”3″ bordercolor=”#000000″ style=”background-color:#FFFFFF” width=”100%” cellpadding=”5″ cellspacing=”3″>
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
<tr>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
<td>Table Cell</td>
</tr>
</table> -
Hi there –
Here are some notes on how to create a background color:
http://www.w3schools.com/tags/att_table_bgcolor.aspAnd here’s an example of font size tags in HTML:
http://www.w3schools.com/tags/att_font_size.aspThis support article might also be helpful to you in getting started with HTML:
http://en.support.wordpress.com/styling-individual-posts-and-pages/Finally, many of our users like to use Windows Live Writer to generate simple HTML tables:
- The topic ‘How to create a table for WordPress page?’ is closed to new replies.