2016-10-02 8 views
0

私は現在、Bigcartelサイトのウェルカムページをカスタマイズしています。Bigcartelのきちんとしたテーマでウェルカムヘッダーとしてロゴを作成する

私はNeatテーマを使用していますが、標準テキストだけでなく、スライドショーに表示されるウェルカムヘッダーとして私のロゴを追加したいと考えています。

私が抱えている問題は、画像のコードを入力すると、スライドショーが消去されるか、ヘッダーテキストが表示されたままの画像が表示されることです。

{% 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 %} 

は、そのブロックを削除し、次のように置き換えます

答えて

0

アップロードヘッダー画像をホームページのウェルカムテキストを置換するには、ヘッドカスタマイズデザインへ]> [詳細]> [ホームは、次のコードを見つけます:

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