我目前正在为我的Bigcartel网站定制欢迎页面。
我正在使用整洁的主题,并想添加我的标志作为欢迎标题,出现在幻灯片上,而不仅仅是有标准的文本。
我遇到的问题是,当我输入图像的代码时,它要么擦除幻灯片,要么给我图像,标题文本仍然出现。
要用上传的标题图像替换主页欢迎文本,请转到自定义设计>高级> Home,然后找到以下代码:
{% 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>