2016-10-02 1 views
0

현재 Bigcartel 사이트의 환영 페이지를 사용자 정의하고 있습니다.Bigcartel의 깔끔한 테마에서 환영 헤더로 로고 만들기

나는 깔끔한 테마를 사용하고 있으며, 표준 텍스트를 갖는 대신 슬라이드 쇼 위에 나타나는 환영 헤더로 내 로고를 추가하고 싶습니다.

내가 겪고있는 문제는 이미지 코드를 입력 할 때 슬라이드 쇼가 지워지거나 헤더 텍스트가 계속 나타나는 이미지를 제공한다는 것입니다.

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