Liquid Shopify - 移动徽标宽度未从设置中

时间:2018-03-31 07:46:54

标签: html shopify liquid

我的移动徽标与桌面徽标分开。我复制了桌面徽标中的代码并复制了移动徽标的设置,但是,徽标大小并未从设置中获取。它应该是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"
}

Front-End

Back-End Settings

感谢您提供的任何见解。

0 个答案:

没有答案