Creating columns in the design

  • Unknown's avatar

    I am updating my resume and I want to make two columns so I can right and left justify, but it won’t let me do that even if I enter several spaces. Is that possible?

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

  • Unknown's avatar

    Hi Obrienln,

    It’s possible to create two columns by using a HTML <table> tag. I recommend giving below support page about HTML Advanced guide.

    https://en.support.wordpress.com/advanced-html/#tables

    Below is a simple table code that you can re-use.

    <table>
    <tr>
    <td>Column 1 Row 1</td>
    <td>Column 2 Row 1</td>
    </tr>
    <tr>
    <td>Column 1 Row 2</td>
    <td>Column 2 Row 2</td>
    </tr>
    </table>

    Hope that helps and let me know if you have any other questions.

    Thanks,
    rutomo

  • The topic ‘Creating columns in the design’ is closed to new replies.