Can I add a table to my blog

  • Unknown's avatar

    Is it possible to add a table (list) ie football team placings

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Here is code for a simple table with two rows of three cells each:

    <table border="1">
    <tr>
    <td>row 1, cell 1</td>
    <td>row 1, cell 2</td>
    <td>row 1, cell 3</td>
    </tr>
    <tr>
    <td>row 2, cell 1</td>
    <td>row 2, cell 2</td>
    <td>row 2, cell 3</td>
    </tr>
    </table>

    You can add as many cells to each row as you want.
    You can add as many rows as you need.

    Feel free to ask more questions, or take a look at this tutorial which shows how to make changes and additions to the basic table above:
    http://www.w3schools.com/html/html_tables.asp

  • Unknown's avatar

    If you use an external blogging software, Google “Blogging Software.” Some allow you to create tables in their software. Essentially you are skipping inserting code, but you get the same end result.

  • Unknown's avatar

    @palmerstonblue
    (Please provide a link to the blog you ask about in these forums starting with http://
    Volunteers are not always inclined to do detective work to look for a blog you might be asking about. Is this you?
    http://palmerstonblue.wordpress.com/ )

    At any rate sawvell mentioned offline editors. Here is the wp.com support document with some reputable links:
    http://en.support.wordpress.com/xml-rpc/
    (note, if you are on a mac, then the offline editors won’t make tables.)

    In my opinion: There are online table generators, but writing a basic table is usually faster and less confusing once you learn what the tags in the html code mean.

  • The topic ‘Can I add a table to my blog’ is closed to new replies.