■ 배너 [ HILO ] 로고관리 ( 섹션별 로고를 알맞게 등록 )
■ 소스 위치 01 /_sp/layout/sky/1/sky.html 파일 46줄
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 기존소스 01
<div ★ module="bannermanage2_display_번호" scope="scroll" class="sky-pos--center">
   
   <!--로고-->
   <a href="{$href}" class="header--logo" hover="t-to-b" {$title} {$target}>{$banner}</span>
   <a href="{$href}" class="header--logo" hover="t-to-b" {$title} {$target}>{$banner}</span>
   
</div>
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 소스 수정 01
  • module="bannermanage2_display_번호"를 삭제해주세요.
  • <a href="{$href}" class="header--logo" hover="t-to-b" {$title} {$target}>{$banner}</span>
    <a href="[링크경로]" class="header--logo" hover="t-to-b"><img src="[이미지경로]"></a>로 변경해주세요.
■ 수정된 소스 예시 01
<div ★ scope="scroll" class="sky-pos--center">
   
   <!--로고-->
   <a href="/index.html" class="header--logo" hover="t-to-b"><img src="/_img/no26/banner/10/01.png"></a>
   
</div>
■ 수정 예시 영상 01
■ 소스 위치 02 /_sp/layout/header/1/header.html 파일 27줄
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 기존소스 02
<div ★ module="bannermanage2_display_번호" scope="index" href="/" class="header--logo" hover="t-to-b">
   <p>
      <span {$title}><a href="{$href}">{$banner}</a></span>
      <span {$title} hover="inner"><a href="{$href}">{$banner}</a</span>
   </p>
</div>
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 소스 수정 02
  • module="bannermanage2_display_번호"를 삭제해주세요.
  • <span {$title}><a href="{$href}">{$banner}</a></span>
    <span ><a href="/index.html"><img src="[이미지경로]"></a></span>로 변경해주세요.
  • <span {$title} hover="inner"><a href="{$href}">{$banner}</a</span>
    <span hover="inner"><a href="/index.html"><img src="[이미지경로]"></a></span>로 변경해주세요.
■ 수정된 소스 예시 02
<div ★ scope="index" href="/" class="header--logo" hover="t-to-b">
   <p>
      <span ><a href="/index.html"><img src="/_img/no26/banner/10/01.png"></a></span>
      <span hover="inner"><a href="/index.html"><img src="/_img/no26/banner/10/02.png"></a></span>
   </p>
</div>
■ 수정 예시 영상 02
■ 소스 위치 03 /_sp/layout/footer/1/footer.html 파일 99줄
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 기존소스 03
<p ★ module="bannermanage2_display_번호" scope="footer" class="footer--company-logo">
   <a href="{$href}" {$title} {$target}>{$banner}</a>
   <a href="{$href}" {$title} {$target}>{$banner}</a>
</p>
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 소스 수정 03
  • module="bannermanage2_display_번호"를 삭제해주세요.
  • <a href="{$href}" {$title} {$target}>{$banner}</a>
    <a href="/index.html"><img src="[이미지경로]"></a>로 변경해주세요.
■ 수정된 소스 예시 03
<p ★ scope="footer" class="footer--company-logo">
   <a href="/index.html"><img src="/_img/no26/banner/10/01.png"></a>
</p>
■ 수정 예시 영상 03
■ 소스 위치 04 /_sp/layout/panel/1/panel.html 파일 63줄
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 기존소스 04
<div ★ module="bannermanage2_display_번호" scope="panel" class="panel--logo">
   <a href="{$href}" {$title}>{$banner}</a>
   <a href="{$href}" {$title}>{$banner}</a>
</div>
(※ 기존소스에서 수정하신 내용이 있다면 차이가 있을 수 있습니다.)
■ 소스 수정 04
  • module="bannermanage2_display_번호"를 삭제해주세요.
  • <a href="{$href}" {$title}>{$banner}</a>
    <a href="[링크경로]"><img src="[이미지경로]"></a>로 변경해주세요.
■ 수정된 소스 예시 04
<div ★ scope="panel" class="panel--logo">
   <a href="/index.html"><img src="/_img/no26/banner/10/01.png"></a>
</div>
■ 수정 예시 영상 04