如何更改大型卡特尔商店中的社交媒体图标?它最初说的是带有Tumblr徽标和tumblr链接的“ Tumblr”。我设法弄清楚了如何将文字更改为“ Youtube”,并使链接指向我的youtube,现在我想知道如何将其更改为youtube社交媒体图标。我只需要帮助找出我需要调整的代码部分。有人能帮忙吗?谢谢
{% if theme.twitter_url != blank or theme.facebook_url != blank
or theme.instagram_url != blank or theme.tumblr_url != blank
or theme.pinterest_url != blank %}
<li class="social-icons dropdown-icons">
{% if theme.instagram_url != blank %}
<a title="Instagram" href="{{ theme.instagram_url }}">
<svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<circle cx="12" cy="12" r="4"/>
<path d="M23.9 7.1c-.2....1.4z"/></svg></a>
{% endif %}
{% if theme.twitter_url != blank %}
<a title="Twitter" href="{{ theme.twitter_url }}"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24">
<path d="M24 4.557c-.883.392.....62 2.457-2.55z"/></svg></a>
{% endif %}
{% if theme.facebook_url != blank %}
<a title="Facebook" href="{{ theme.facebook_url }}"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path d="M22.7 0H1....3-1.3z"/></svg></a>
{% endif %}
{% if theme.pinterest_url != blank %}
<a title="Pinterest" href="{{ theme.pinterest_url }}"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24">
<path d="M12 0C5.....-12z" fill-rule="evenodd" clip-rule="evenodd"/></svg></a>
{% endif %}
{% if theme.tumblr_url != blank %}
<a title="Tumblr" href="{{ theme.tumblr_url }}"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 10 16">
<path d="M10 15.127c-.692.322-1.32.55-....64 2.45-.79v2.523z"/></svg></a>
{% endif %}
{% endif %}
{% if store.website != blank %}
<li><a href="{{ store.website }}">Back to site</a></li>
{% endif %}
{% if theme.twitter_url != blank or theme.facebook_url != blank or theme.instagram_url != blank
or theme.tumblr_url != blank or theme.pinterest_url != blank %}
<li class="social-icons dropdown-icons">
{% if theme.instagram_url != blank %}
<a title="Instagram" href="{{ theme.instagram_url }}"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"><circle cx="12" cy="12" r="4"/>
<path d="M23.9 ...... 1.4-1.4 1.4z"/></svg></a>
{% endif %}
{% if theme.twitter_url != blank %}
<a title="Twitter" href="{{ theme.twitter_url }}"><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24"
viewBox="0 0 24 24">
<path d="M24 4.557c-.883...... 2.457-2.55z"/></svg></a>
{% endif %}
{% if theme.facebook_url != blank %}
<a title="Facebook" href="{{ theme.facebook_url }}"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24">
<path d="M22.7 0H1....1.3-1.3z"/></svg></a>
{% endif %}
{% if theme.pinterest_url != blank %}
<a title="Pinterest" href="{{ theme.pinterest_url }}"><svg xmlns="http://www.w3.org/2000/svg" width="24"
height="24" viewBox="0 0 24 24"><path d="M12 0C5......0-6.628-5.373-12-12-12z"
fill-rule="evenodd" clip-rule="evenodd"/></svg></a>
{% endif %}
{% if theme.tumblr_url != blank %}
<a title="Tumblr" href="{{ theme.tumblr_url }}"><svg xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 10 16"><path d="M10 15.127c-.692.322-1......523z"/></svg></a>
{% endif %}
{% endif %}
<li class="bigcartel-credit"><span class="badge">{{ bigcartel_credit }}</span></li>
</ul>