hi, can any one please help me to remove this purple line in my social media banner, please.
password: hamza
the section code
### {{ section.settings.text }}
{% for block in section.blocks %}
{% if block.settings.icon == 'facebook' %}
{% elsif block.settings.icon == 'instagram' %}
{% elsif block.settings.icon == 'pinterest' %}
{% elsif block.settings.icon == 'reddit' %}
{% elsif block.settings.icon == 'snapchat' %}
{% elsif block.settings.icon == 'twitch' %}
{% elsif block.settings.icon == 'twitter' %}
{% elsif block.settings.icon == 'vk' %}
{% elsif block.settings.icon == 'youtube' %}
{% endif %}
{% endfor %}
{% style %}
.social-banner {
background: {{ section.settings.background_color }};
}
.social-text h3 {
color: {{ section.settings.icon_color }};
}
.social-banner svg {
fill: {{ section.settings.icon_color }};
}
{% endstyle %}
{% schema %}
{
"name": "Social icons",
"settings": [
{
"type": "text",
"id": "text",
"label": "Socials text"
},
{
"type": "color",
"id": "background_color",
"label": "Background color"
},
{
"type": "color",
"id": "icon_color",
"label": "Icon & text color"
}
],
"blocks": [
{
"type": "icon",
"name": "Social icon",
"settings": [
{
"type": "select",
"id": "icon",
"label": "Choose an icon",
"options": [
{
"value": "facebook",
"label": "Facebook"
},
{
"value": "instagram",
"label": "Instagram"
},
{
"value": "pinterest",
"label": "Pinterest"
},
{
"value": "reddit",
"label": "Reddit"
},
{
"value": "snapchat",
"label": "Snapchat"
},
{
"value": "twitch",
"label": "Twitch"
},
{
"value": "twitter",
"label": "Twitter"
},
{
"value": "vk",
"label": "VK"
},
{
"value": "youtube",
"label": "Youtube"
}
],
"default": "facebook"
},
{
"type": "url",
"id": "link",
"label": "Social link"
}
]
}
] ,
"presets": [
{
"name": "Social icons",
"category":"Custom"
}
]
}
{% endschema %}