■ 배너 [ 23 ] 로고 : 300 * 140 / 60 * 23
■ 소스 위치 01 /_sp/apps/layout/footer/footer-3/footer.html 파일 206줄
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 기존소스 01
<li module="bannermanage2_display_번호" scope="bottom" class="sp-left">
   <p class="displaynone" scope="{$title}"><a href="/">{$banner}</a></p>
   <p class="displaynone" scope="{$title}"><a href="/">{$banner}</a></p>
   Copyright © 2018 <strong>{$mall_name}</strong> Inc. All rights reserved. / <a href="http://www.pandassi.com" target="_blank">designed by pandassi ©</a>
</li>
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 소스 수정 01
  • module="bannermanage2_display_번호"를 삭제해주세요.
  • <p class="displaynone" scope="{$title}"><a href="/">{$banner}</a></p>
    <p><a href="/"><img src="[이미지경로]" /></a></p>로 변경해주세요.
■ 수정된 소스 예시 01
<li scope="bottom" class="sp-left">
   <p><a href="/"><img src="/_img/no23/banner/01/03.png" /></a></p>
   Copyright © 2018 <strong>{$mall_name}</strong> Inc. All rights reserved. / <a href="http://www.pandassi.com" target="_blank">designed by pandassi ©</a>
</li>
■ 수정 예시 영상 01
■ 소스 위치 02 /_sp/apps/layout/header/header-1/header.html 파일 27줄
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 기존소스 02
<div class="sp-header-logo" module="bannermanage2_display_번호" scope="top">
   <a href="/" {$target} class="before displaynone" scope="{$title}">{$banner}</a>
   <a href="/" {$target} class="after displaynone" scope="{$title}">{$banner}</a>
</div>
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 소스 수정 02
  • module="bannermanage2_display_번호"를 삭제해주세요.
  • <a href="/" {$target} class="before displaynone" scope="{$title}">{$banner}</a>
    <a href="/" class="before"><img src="[이미지경로]" /></a>로 변경해주세요.
  • <a href="/" {$target} class="after displaynone" scope="{$title}">{$banner}</a>
    <a href="/" class="after"><img src="[이미지경로]" /></a>로 변경해주세요.
■ 수정된 소스 예시 02
<div class="sp-header-logo" scope="top">
   <a href="/" class="before"><img src="/_img/no23/banner/01/01.png" /></a>
   <a href="/" class="after"><img src="/_img/no23/banner/01/02.png" /></a>
</div>
■ 수정 예시 영상 02