Hello,
If I am understanding you correctly then you want to have two columns on your page. Well if this is what you want to do then you are in luck because this is easy to do.
There are two ways that I am going to show you to make columns.
Coding – Now don’t be threatened by this option and just jump to the second one. You can very easily code columns into your WordPress website. In fact you can even do so right in your pages text editor. Just add the following code.
<div style="width:40%;padding:0 10pt 0 0;float:left;">
Column 1 info here
Column 1 info here
Column 1 info here
</div>
<div style="width:40%;padding:0 10pt 0 0;float:right;">
Column 2 info here
Column 2 info here
Column 2 info here
</div>
That will add two columns side by side with slight padding in between the two.
You can also add three columns side by side.
<div style="width:30%;padding:0 10pt 0 0;float:left;">
Column 1 info here
Column 1 info here
Column 1 info here
</div>
<div style="width:30%;padding:0 10pt 0 0;float:left;">
Column 2 info here
Column 2 info here
Column 2 info here
</div>
<div style="width:30%;padding:0 10pt 0 0;float:right;">
Column 3 info here
Column 3 info here
Column 3 info here
</div>
Plugins – This is the mindless option if you would like to call it that. There are loads of plugins out there that can add columns of any amount to any page using a simple shortcode. My personal favourite is Shortcode Ultimate although there are many other ones out there like Column Shortcode and Columns.
Hopefully that answers your question. I would personally suggest using the code if you just want to do it once but if you continually want to add columns to your website then a plugin solution is probably best.
Let me know if this helps!