Minimal Theme - How to add "image with text" from debut theme to mine?

hello guys,

I am using minimal theme and i saw this in debut theme which minimal theme doesnt have. Any idea i can code this into my minimal theme? thanks in advance.

Hello @Gentlelove ,

By creating schema, you can change the images from backend only instead of making changes in code

Dashboard->Online store->theme->edit code-> featured-row.liquid

Inside the file find

{{ section.settings.text }}
this code and insert this code below it

 

[](https://www.ubereats.com/es-AU/sydney/food-delivery/chicken-and-grill-bondi/PmKuLiSoRmK0WYnIMhHPKQ/)   
[](https://deliveroo.com.au/menu/sydney/bondi/chicken-and-grill-bondi#)   
[](https://www.menulog.com.au/restaurants-chicken-and-grill-bondi/menu)

then add this code

{
      "type": "image_picker",
      "id": "image_1",
      "label": {
        "de": "Bild",
        "en": "Image",
        "es": "Imagen",
        "fr": "Image",
        "it": "Immagine",
        "ja": "画像",
        "nl": "Afbeelding",
        "pt-BR": "Imagem",
        "zh-CN": "图片",
        "zh-TW": "圖片"
      }
    },
    {
      "type": "image_picker",
      "id": "image_2",
      "label": {
        "de": "Bild",
        "en": "Image",
        "es": "Imagen",
        "fr": "Image",
        "it": "Immagine",
        "ja": "画像",
        "nl": "Afbeelding",
        "pt-BR": "Imagem",
        "zh-CN": "图片",
        "zh-TW": "圖片"
      }
    },
    {
      "type": "image_picker",
      "id": "image_3",
      "label": {
        "de": "Bild",
        "en": "Image",
        "es": "Imagen",
        "fr": "Image",
        "it": "Immagine",
        "ja": "画像",
        "nl": "Afbeelding",
        "pt-BR": "Imagem",
        "zh-CN": "图片",
        "zh-TW": "圖片"
      }
    }

It doesnt work. the “image with text” became weird.