Here’s our apps liquid file from our Shopify theme. The problem is that it adds a bunch of padding to the top and bottom of the section whenever we use a widget from the app. What can we add to this liquid file to make sure there are no margins between the widget and the next on in the theme?
{%- for block in section.blocks -%}
{% render block %}
{%- endfor -%}
{% schema %}
{
“name”: “Apps”,
“settings”: [
{
“type”: “checkbox”,
“id”: “skip_container”,
“label”: “Full page width”,
“default”: false
}
],
“blocks”: [
{
“type”: “@app”
}
],
“presets”: [
{
“name”: “Apps”
}
]
}
{% endschema %}