My web site mobile logo not clickable. I check the code. The link is in there
The code like this
My web site mobile logo is not clickable. Check the code, look like the link is in there. Please help
my site ebuilderdirect.com
<div class="site-header__logo">
{% if section.settings.logo %}
<a href="{{shop.url}}" class="site-header__logo-image{% if section.settings.align_logo == 'center' %} site-header__logo-image--centered{% endif %}">
{% capture image_size %}{{ section.settings.logo_max_width | escape }}x{% endcapture %} <img src="{{ section.settings.logo | img_url: image_size }}"
srcset="{{ section.settings.logo | img_url: image_size, scale: 2 }} 1x, {{ section.settings.logo | img_url: image_size, scale: 4 }} 1.1x"
alt="{{ section.settings.logo.alt | default: shop.name }}" width ="{{section.settings.logo_max_width}}" height ="{{section.settings.logo_max_width | divided_by: section.settings.logo.aspect_ratio | floor}}">
</a>
{% else %}
<a class="site-header__logo-link" href="{{shop.url}}">{{ shop.name }}</a>
{% endif %}
</div>
Thank you