Retina Theme: 3 column section on the home page

Retina Theme: 3 column section on the home page

JanJhnstn
New Member
4 0 0

I can't seem to make the html work for a three column text section on my home page. The theme is Retina from Out Of The Sandbox and it doesn't include a multi column section built in. My attempts look great in the editor but don't work on the live site. Any help to resolve this seemingly simple request? URL is janjohnstonartworks.com

 

The three text columns below the product section is what I'm looking to solve. This is the view in the editor from the html I've written.

Screenshot of three column solution requested.png

But, this is the live home page shows three rows instead of the three columns from my html.

Live site with three rows instead of three columns.png

 Thanks,

Jan Johnston

Replies 2 (2)

Moeed
Shopify Partner
5544 1501 1792

Hey @JanJhnstn 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
@media screen and (min-width: 768px) {
section.custom-html .container {
    display: flex !important;
    gap: 2rem !important;
}
}
</style>

RESULT:

Moeed_0-1727297587698.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

- Need a Shopify Specialist? Chat on WhatsApp

- Custom Design | Advanced Coding | Store Modifications


JanJhnstn
New Member
4 0 0

That works! Now I have the three columns but they are unequal in width. Is there specific way to specify the column width in html? I'm using 

<div class="six column"></div> and <div class="one-third columns"></div> but both are producing same result = uneven column widths.

Thanks in advance,

Jan Johnston