Hello! I am having issues with some padding on 2 different sections. I’m hoping that someone will say that it’s a quick fix for both! Thanks so much in advance!
**** 1) I have a background video banner where there is white space on both sides of the video. I have the banner set at Full Page width but it does not stretch completely across the container
The css is:
video { display: block; padding: 0; margin: 0 auto; width: 100%; height: auto %; aspect-ratio: 16 / 9; }**** 2) I added an image spacer section to my page but I have this tiny white space at the top and bottom of the image. The code in my liquid file is:
.image-spacer__container { padding: 0; width: 100%; } .image-spacer__container img { padding: 0; width:100%; }{% if section.settings.image_spacer != blank %}
{% schema %}
{
“name”: “Image Spacer”,
“class”: “image-spacer”,
“tag”: “section”,
“settings”: [
{
“type”: “header”,
“content”: “Image”
},
{
“type”: “image_picker”,
“label”: “Pick an Image”,
“id”: “image_spacer”
}
],
“presets”: [
{
“name”: “Image Spacer”,
“category”:“Image”,
“settings”: {
}
}
]
}
{% endschema %}
{% javascript %}
{% endjavascript %}
