@MAPDESIGNS create new section and add this code
{% schema %}
{
"name": "Video Section",
"settings": [
{
"type": "color",
"id": "background_color",
"label": "Background Color"
},
{
"type": "range",
"id": "padding_top",
"label": "Padding Top",
"min": 0,
"max": 100,
"default": 20,
"unit": "px"
},
{
"type": "range",
"id": "padding_bottom",
"label": "Padding Bottom",
"min": 0,
"max": 100,
"default": 20,
"unit": "px"
},
{
"type": "text",
"id": "heading_text",
"label": "Heading Text"
},
{
"type": "color",
"id": "heading_text_color",
"label": "Heading Text Color"
},
{
"type": "select",
"id": "heading_font_weight",
"label": "Heading Font Weight",
"options": [
{ "value": "normal", "label": "Normal" },
{ "value": "bold", "label": "Bold" },
{ "value": "bolder", "label": "Bolder" },
{ "value": "lighter", "label": "Lighter" }
],
"default": "normal"
},
{
"type": "select",
"id": "text_alignment",
"label": "Text Alignment",
"options": [
{ "value": "left", "label": "Left" },
{ "value": "center", "label": "Center" },
{ "value": "right", "label": "Right" }
],
"default": "center"
},
{
"type": "url",
"id": "video_link",
"label": "Video File Link"
}
],
"presets": [
{
"name": "Video Section",
"category": "Custom Section"
}
]
}
{% endschema %}