Mutlicolunm section on Prestige theme homepage

Hello

I am trying to add a multicolumn section i can edit to my prestige theme homepage. Any idea how i can acheive this?

Hi @Aprils_1 ,

Please send me the code of the list-brands.liquid file, I will help you create a new section for it

I don’t have such a liquids file.

Hi @Aprils_1 ,

Please follow the steps below:

  • Step 1: Add new section named multicolumn.liquid

  • Step 2: Change all code multicolumn.liquid file:

{% schema %}
{
  "name": "Multicolumn",
  "class": "shopify-section--bordered",
  "settings": [
    {
      "type": "text",
      "id": "subheading",
      "label": "Sub-heading",
      "default": "Sub-heading"
    },
    {
      "type": "text",
      "id": "title",
      "label": "Heading",
      "default": "Your HTML"
    }
  ],
  "blocks": [
    {
      "type": "image",
      "name": "Image",
      "settings": [
        {
          "type": "image_picker",
          "id": "image",
          "label": "Upload image"
        },
        {
          "type": "text",
          "id": "title",
          "label": "Heading"
        }
      ]
    }
  ],
  "presets": [
    {
      "category": "Multicolumn",
      "name": "Multicolumn"
    }
  ]
}
{% endschema %}
  • Step 3: You can add Multicolumn section and check it.

Hope it helps!

Hello , thanks for the help. I’ve put in this code, however the font does not match the theme fonts I am using, plus I would need two rows (i’ve attached an image example), could you please help ? thank you so much

Hello!

I tried this solution and it seemed to work for me. The only issue is that images appear to be very small and headings are shown on the right side of the image. Would there be any adjustments I could do to solve this?

@Beercis Did you solve this by any chance?

Hi there!

I solved it by adding custom liquid section for particular template where I needed it to appear.