• I’d like to create a single static page with two columns.
    In column A, I would like to have text.
    In column B, I would like to have a small form for three-four inputs.
    Any ideas?

Viewing 1 replies (of 1 total)
  • There are many ways to do this but the easiest way without installing a plugin (page builder) is using table. You can find table button on WordPress editor, or simply use below code to create a table with two columns:

    <table>
      <tr>
        <td>your text goes here</td>
        <td>your form goes here</td>
      </tr>
    </table>
Viewing 1 replies (of 1 total)

The topic ‘Create a single post with two columns’ is closed to new replies.