Making a column(roster)

  • Unknown's avatar

    How do I make columns in my posts?

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

  • Unknown's avatar

    Try looking here, I cannot guaranty it will work though since I never tried it: http://www.w3schools.com/html/html_tables.asp

    – Lora

  • Unknown's avatar

    Sorry, I don’t think I can alter the HTML, just the CSS codes. Thanks Lora.

  • Unknown's avatar

    @sneakerera: How many columns do you want?

    @lorawow: Better stop responding to questions you cannot answer.

  • Unknown's avatar

    I don’t see any reason why a HTML table won’t work. Tell me?

  • Unknown's avatar

    I would like to make three Columns.

    -lorawow(you cannot edit the HTML codes in wordpress)

  • Unknown's avatar

    lorawow
    Yes, you can make tables in html on wp.com. But your answer is not useful if you don’t know how to do it.

    sneakerera

    You can write html in wordpress.com.
    You cannot alter the basic functions of themes, but there are many simple basic old fashioned html codes you can use. Even some css codes.

    Your blog is private so I don’t know which theme you are using so the width may have to be altered. The “data” can be images, text, other tables, etc. it can get complicated. You can also command colors of background and text.
    Here is a table with 3 columns and 2 different ways the data is formated.

    <table border="0" width="450" align="center">
    <tbody>
    <tr>
    <td style="text-align:center;background-color:#eeeeee;" colspan="3">TITLE_HERE</td>
    </tr>
    <tr>
    <td style="text-align:center;">ROW 1_DATA_1_HERE</td>
    <td style="text-align:center;">ROW_1_DATA_2_HERE</td>
    <td style="text-align:center;">ROW_1_DATA_3_HERE</td>
    </tr>
    <tr>
    <td style="text-align:center;">ROW_2_DATA_1_HERE</td>
    <td style="text-align:center;">ROW_2_DATA_2_HERE</td>
    <td style="text-align:center;">ROW_2_DATA_3_HERE</td>
    </tr>
    <tr>
    <td style="text-align:left;">ROW_3_DATA_1_HERE</td>
    <td style="text-align:left;">ROW_3_DATA_2_HERE</td>
    <td style="text-align:left;">ROW_3_DATA_3_HERE</td>
    </tr>
    <tr>
    <td style="text-align:left;">ROW_4_DATA_1_HERE</td>
    <td style="text-align:left;">ROW_4_DATA_2_HERE</td>
    <td style="text-align:left;">ROW_4_DATA_3_HERE</td>
    </tr>
    </tbody></table>

    Hope this helps.

  • Unknown's avatar

    @sneakerera: Tess and I are talking about adding code in the html post editor, not modifying the theme.

    For three regular columns covering the entire width of the theme, you need this:

    <table border="0">
    <tr>
    <td valign="top">
    LEFT_CONTENT_HERE
    </td>
    <td valign="top" style="padding-left:12px;padding-right:12px;">
    MIDDLE_CONTENT_HERE
    </td>
    <td valign="top">
    RIGHT_CONTENT_HERE
    </td>
    </tr>
    </table>
  • Unknown's avatar

    @panos,
    and I thought learning a few phrases in French would be difficult! But then we went to Spain…

    Both codes work in wp.com (and elsewhere), though.

  • Unknown's avatar

    Yes of course. They are just two examples; if sneakerera tells us or shows us exactly what s/he wants to do, we can give him the proper code (unlike a certain pest).

  • Unknown's avatar

    M.
    bonne nuit

  • Unknown's avatar

    Thank you all for the help. The problem was resolved. The blog will be public soon.

    —lorawow the link was useful after all, the table tags do work.—

    “Thanks Again”

  • Unknown's avatar

    Hehe, at least someone appreciates my post. =D

  • The topic ‘Making a column(roster)’ is closed to new replies.