Video Walkthrough
Creating two columns of text on a page in your Shopify store is not difficult. You'll need to edit a bit of code, but no coding experience is necessary--I'll walk you through each step.
1. First, you will need to open the Style.css.liquid file for your theme. This can be found under Themes > Template Editor. If you don't know where to find this, follow the steps in this post: How to edit the CSS of your Shopify theme. Note: The name of your CSS file may vary depending on your theme, but it will end in "css.liquid." Do not edit checkout.css.liquid. Your CSS file will probably be named style.css.liquid or something similar.
2. Scroll down to the bottom of style.css.liquid, and then copy and paste this code:
.one-half-column-left {
width:48%;
float:left;
}
.one-half-column-right {
width:48%;
float:right;
}
@media only screen and (max-width: 600px) {
.one-half-column-left, .one-half-column-right,
.one-third-column, .one-third-column-last {
float:none;
width:100%;
margin-right:0;
}
}
3. Click "Save" to save your changes.

4. Now that you've added the necessary CSS, you just need to add some simple code within the pages where you want to show two columns of text. Go to the page editor in Shopify (click "Pages" in the sidebar of your admin panel), then choose the page you want to edit. Next, click on the "Show HTML" button, which is located on the right just above the page editor.
To create the columns, just copy and paste this code into the HTML editor:
<div class="one-half-column-left">
<p>Insert the content for the left column here.</p>
</div>
<div class="one-half-column-right">
<p>Insert the content for the right column here.</p>
</div>
<br style="clear:both;" />
And that's it! You'll notice that when you view the page in the HTML editor, each paragraph is wrapped in HTML tags that look like this: <p> and</p>. Those signify the beginning and end of a paragraph, so they should be included inside the column code as shown above.
Sometimes the page editor does funky things when you edit the text, so you may notice that the column layout gets broken while you are editing the page content. If that happens, just go back to the HTML editor and make sure the code is still there as shown above, with the content for each column inside the div tags.
UPDATE: How to create THREE columns
To show three columns rather than two, follow the same steps above, but use this CSS instead:
.one-third-column {
width:32%;
margin-right:2%;
float:left;
}
.one-third-column-last {
width:32%;
margin-right:0;
float:right;
}
@media only screen and (max-width: 600px) {
.one-half-column-left, .one-half-column-right,
.one-third-column, .one-third-column-last {
float:none;
width:100%;
margin-right:0;
}
}
Then, use this code in your HTML editor of the page or product on which you want to show three columns:
<div class="one-third-column">
Insert the content for the first column here.
</div>
<div class="one-third-column">
Insert the content for the second column here.
</div>
<div class="one-third-column-last">
Insert the content for the third column here.
</div>
<br style="clear:both;" />
Still having problems, or do you have any questions or comments? Leave a comment below!
61 comments
hi! thank you so much for this tutorial, it’s exactly what i needed. i am running into some trouble with the two column format and i can’t seem to pick out what part of the code is causing it. basically, my two columns are appearing but the right column is not aligning with the left- it’s appearing essentially below the left column, but off to the right. further, when i try to paste "" at the end of my html in the page i’m editing, it disappears when i hit ‘save’. the page is here: http://temerityjewelry.com/pages/contact
thanks so much!!
ok, nevermind, i figured it out- was leaving out the initial ‘.’ in the css code before the left column!
Hi Roberta,
I checked the code on your site, and your CSS has one tiny mistake that’s causing the problem. The CSS in your shop.css file for “one-half-column-left” is missing the period at the beginning—it should be “.one-half-column-left”. Try that and let me know if you still have any problems!
yep that worked! i think we caught it at the same time :) thanks so much for the quick reply!
Hi Leighton,
just came across your stuff here on EP today, immensely useful considering Shopify manuals aren’t very informative to coding newbies such as myself!
I’ve a question: does this method work/apply for the footer section of a homepage? My current theme (Minimal), when I remove the option to display Blog posts at the footer, I’m left with the Quicklinks all in one big column and the Newsletter Column shifts to the middle.
Is there any way to modify the Quicklinks so that it spreads out into two columns so it looks more presentable (and hopefully shifts the Newsletter Column back to far right where it belongs)? Any help on this would be greatly appreciated!