How do you make a table in your post?
-
check this
http://cheatspulse.com/top-five-cash-crops-in-farmville/
(wordpress)theres a table in a post i wonder how to do that
The blog I need help with is: (visible only to logged in users)
-
You switch the post editor to html and use html coding – see here:
http://onecoolsite.wordpress.com/2008/03/31/how-to-make-html-tables-for-your-wordpress-blog/
Or you can do it in Windows Live Writer, if you are a PC user.
-
<table border="1" cellspacing="0" cellpadding="2" align="center"> <tbody> <tr> <td>1_LEFT_CONTENT_HERE</td> <td>1_RIGHT_CONTENT_HERE</td> </tr> <tr> <td>2_LEFT_CONTENT_HERE</td> <td>2_RIGHT_CONTENT_HERE</td> </tr> </tbody></table>table means “start” the table.
Play around with #s in border, cellspacing, and cellpadding; align center, right, or left
body means start putting stuff into the table
tr means start a table row
td means put data, picture, text
repeat td as many times as you want cells across your tablerepeat the table rows (tr) as many times as you want
For every < there is a > <something> For every start < >, there must be a close < / >If you start a table, then you must close it
-
-
Ah no, it’s different: you’re giving a concrete example and additional pieces of advice!
-
-
The post contains links to tutorials so I included your info and advice but won’t include more as it would be redundant.
- The topic ‘How do you make a table in your post?’ is closed to new replies.