我的移动徽标与桌面徽标分开。我复制了桌面徽标中的代码并复制了移动徽标的设置,但是,徽标大小并未从设置中获取。它应该是250,而它只有175.徽标图像来自设置就好了,它的宽度似乎是唯一的问题。请参阅下面的屏幕截图和代码:
<a href="/" itemprop="url">
{% capture image_size %}{{ section.settings.mobile_logo_max_width | escape }}x{% endcapture %}
<img
src="{{ section.settings.mobile_logo | img_url: image_size }}"
srcset="{{ section.settings.mobile_logo | img_url: image_size }} 1x, {{ section.settings.mobile_logo | img_url: image_size, scale: 2 }} 2x"
alt="{{ section.settings.mobile_logo.alt | default: shop.name }}"
itemprop="mobile_logo"
/>
</a>
{
"type": "image_picker",
"id": "mobile_logo",
"label": "Mobile Logo Image"
},
{
"type": "text",
"id": "mobile_logo_max_width",
"label": "Mobile Logo Max Width (Pixels)",
"default": "250"
}
感谢您提供的任何见解。