PXE Snow Plate의 업그레이드 버전을 받으신 분들 중에 "1단 보기"에서 화면이 이상하게 나오시는 분들은 아래의 코드를 수정해 주시기 바랍니다.
layout.html에서 먼저 아래의 코드를 찾습니다
layout.html
<!-- 좌측 1개의 사이드바 시작--> <div class="leftbar"> <div class="title"> <!--@if($layout_info->colorset == "2col" || $layout_info->colorset == "3col")--> <img src="./images/default/leftTitle_comments.gif" alt="" /> <!--@else--> <img src="./images/white/leftTitle_comments.gif" alt="" /> <!--@end--> </div> <div class="body"> <!-- 최근댓글 위젯 --> 위젯이나 기타 컨텐츠를 넣으세요 </div> </div><!--leftbar out --> <!--@end--> <!-- 좌측 1개의 사이드바 끝--> <!-- Begin ShoutMix - http://www.shoutmix.com --> <iframe title="webtrendawards" src="http://www4.shoutmix.com/?webtrendawards" width="100%" height="490px" frameborder="0" scrolling="auto"></iframe> <!-- End ShoutMix --> <br /><br /> <img src="./images/madewith.gif" alt="" /> </div><!--leftcol out --> <!--@end--> <div id="middlecol"> <!-- 컨텐츠 시작 --> {$content} </div><!--middlecol out -->위의 코드 부분을 아래의 코드로 대체해 주세요
<!-- 좌측 1개의 사이드바 시작--> <div class="leftbar"> <div class="title"> <!--@if($layout_info->colorset == "2col" || $layout_info->colorset == "3col")--> <img src="./images/default/leftTitle_comments.gif" alt="" /> <!--@else--> <img src="./images/white/leftTitle_comments.gif" alt="" /> <!--@end--> </div> <div class="body"> <!-- 최근댓글 위젯 --> 위젯이나 기타 컨텐츠를 넣으세요 </div> </div><!--leftbar out --> <br /><br /> <img src="./images/madewith.gif" alt="" /> <!--@end--> <!-- 좌측 1개의 사이드바 끝--> </div><!--leftcol out --> <!--@end--> <div id="middlecol"> <!-- 컨텐츠 시작 --> {$content} </div><!--middlecol out -->