Hello friends, how can I create such a section in dawn theme? Do i have to install a section?
You can check if there’s an icon with text section. You will most of probably need to code this section. If there’s a section that comes any close to this you can tweak that section or create a new section taking help from it.
1 Like
You can try, liquid
## {{ section.settings.title }}
{{ section.settings.text }}
{% schema %}
{
"name": "Custom Welcome",
"settings": [
{"type": "text", "id": "title", "label": "Heading", "default": "Welcome"},
{"type": "textarea", "id": "text", "label": "Text", "default": "Message here"}
],
"presets": [{"name": "Custom Welcome", "category": "Custom"}]
}
{% endschema %}
1 Like
Thanks Shadab_dev for your answer.
Hello Lena42 and thanks for answering, I get an error trying this code.
