在Bigcartel的整洁主题中将徽标设为欢迎标题

时间:2016-10-02 23:25:48

标签: themes bigcartel

我目前正在为我的Bigcartel网站自定义欢迎页面。

我正在使用Neat主题,并希望将我的徽标添加为幻灯片显示的欢迎标题,而不是仅使用标准文本。

我遇到的问题是当我输入图像的代码时,它会删除幻灯片,或者给我带有标题文字的图像。

1 个答案:

答案 0 :(得分:0)

要用您上传的标题图片替换主页欢迎文字,请转到自定义设计>高级>主页然后找到以下代码:

  {% if theme.welcome_header != blank or theme.welcome_subheader != blank %}
  <div class="featured_holder">
    <div class="featured">
      {% if theme.welcome_subheader != blank %}<p>{{ theme.welcome_subheader }}</p>{% endif %}
      {% if theme.welcome_header != blank %}<h2>{{ theme.welcome_header }}</h2>{% endif %}
      <a href="/products" class="button">Shop Now</a>
    </div>
  </div>
  {% endif %}

删除该块,并将其替换为以下内容:

<div class="featured_holder">
  <div class="featured">
    <img src="{{ theme.logo.url | constrain: '400' }}" alt="{{ store.name }}">
  </div>
</div>