I can see someone has asked this same question regarding two columns and (very kindly) they were given some html code to use.
I would be super grateful if someone could please help me with some html code that would allow me to add three columns to pages in the debut theme.
Thanks in advance!
Hello Aaron_Robbins,
For home page product display you can change column like this:
Thanks for your reply, but that is not what I need.
As mentioned, I require some html code to add in the pages section to create 3 columns.
Use this HTML
<div class="page-width">
<ul class="grid grid--uniform grid--view-items">
<li class="grid__item small--one-half medium-up--one-third">
<-- Your content -->
</li>
<li class="grid__item small--one-half medium-up--one-third">
<-- Your content -->
</li>
<li class="grid__item small--one-half medium-up--one-third">
<-- Your content -->
</li>
</ul>
</div>
Bogi2
6
How do you make it responsive on mobile?