묻고답하기

탭형태의 최근 이미지 게시물을 코드생성하여 레이아웃 편집기에 삽입을 하였는데 화면이 하얗게 나오고 아무것도 표시되않습니다.

삽입코드는
<img class="zbxe_widget_output" widget="tab_newest_images" skin="tab_images_yym" order_target="list_order" order_type="desc" thumbnail_type="crop" display_author="Y" display_regdate="Y" display_readed_count="Y" display_voted_count="Y" mid_list="board" />
위의 코드 입니다.

레이아웃 편집기에 나와있는 내용은

<!-- js 파일 import -->
<!--%import("js/moonhouse.js")-->

<!--// 레이아웃과 연동될 css 파일 import -->
<!--@if($layout_info->colorset == "simple")-->
    <!--%import("css/simple.css")-->
<!--@else-->
    <!--%import("css/normal.css")-->
<!--@end-->

<style type="text/css">
* { margin:0; padding:0; }
</style>

<!--@if($layout_info->scrollbar == "yes")-->
<style type="text/css">
  HTML { scrollbar-face-color:{$layout_info->scrollbar_color};
  scrollbar-shadow-color:gray;
  scrollbar-highlight-color:#f0f0f0;
  scrollbar-3dlight-color:#F0F0F0;
  scrollbar-darkshadow-color:#ffffff;
  scrollbar-track-color:#F0F0F0;
  scrollbar-arrow-color:#ffffff;
</style>
<!--@end-->

<!-- 배경이미지 설정 -->
<style>
<!--@if(!$layout_info->bg_img)-->
body { background:url(./layouts/mh_simple/images/page_bg.jpg) repeat-x #3A0404; }
<!--@else-->
body { background:url({$layout_info->bg_img}) {$layout_info->layout_bgimg_align} top {$layout_info->layout_bgimg_repeat} {$layout_info->bg_color} }
<!--@end-->
</style>
<!-- /배경이미지 설정 -->

<!--@if(!$layout_info->colorset)-->
  {@$layout_info->colorset = "simple"}
<!--@end-->
 
<!-- 메인이미지 설정 -->
<div id="wrapper" style=<!--@if(!$layout_info->main_img)-->"background:url(./layouts/mh_simple/images/header.jpg) no-repeat;"<!--@else-->"background:url({$layout_info->main_img}) no-repeat;"<!--@end--> />
<!-- /메인이미지 설정 -->
    <div id="none"></div>

 <!--logo-->
 <div id="logo"><a href="{$layout_info->index_url}">
 <!--@if(!$layout_info->logo_image)-->
   {$layout_info->logo_text}<!--@else--><img src="{$layout_info->logo_image}" alt="Logo" class="iePngFix" />
 <!--@end--></a></div>

 <!--img-->
 <ul id="img">
   <!--@if(!$layout_info->img_image)--><img src="images/woman.png" class="iePngFix" /><!--@else-->
     <img src="{$layout_info->img_image}" class="iePngFix" />
      <!--@end-->
 </ul>
 
 <!-- 로그인 위젯 -->
    <!--@if($layout_info->Login == "yes")-->
   <ul id="logoin">
     <img class="zbxe_widget_output" widget="login_info" skin="nuri_simple_login_garo" colorset="col_000" />
      </ul>
 <!--@end-->
 
    <!--GNB-->
    <ul id="gnb">
      <!-- main_menu 1차 시작 -->
        {@$gnb_count = 0;}
        <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['link'])-->
          <!--@if($val['selected'])-->
            {@ $menu_1st = $val }
          <!--@end-->
          <li id="gnbli{$gnb_count}" <!--@if($val['selected'])-->class="on"<!--@end--> onmouseover="gnbinToggle({$gnb_count}, this)" ><a href="{$val['href']}" onfocus="this.blur()" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a></li>{@$gnb_count++;}
        <!--@end--><!--@end-->
      <!-- main_menu 1차 끝 -->
    </ul>
    <!--//GNB-->

    <script type="text/javascript">
      var gnb_count = {$gnb_count};
    </script>

    <!-- 2차 메뉴 -->
      {@$gnb_count = 0;}
      <!--@foreach($main_menu->list as $mkey => $mval)-->
        <!--@if($mval['text'])-->
          <!-- 왼쪽 2차 메뉴 -->
          <!--@if($mval['selected'])-->
            <ol id="gnb{$gnb_count}" class="gnb_sub" style="display:block;">
              <!--@if(!$mval['list'])--><li></li><!--@end-->
              <!--@foreach($mval['list'] as $key => $val)--><!--@if($val['text'])-->
                <li <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" onfocus="this.blur();" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a>
    </li>
      <!--@end--><!--@end-->
            </ol>
    <script type="text/javascript">
      var gnb_count_now = {$gnb_count};
      reset_menu();
    </script>
    <!--@else-->
      <ol id="gnb{$gnb_count}" class="gnb_sub" style="display:none;">
    <!--@if(!$mval['list'])--><li></li><!--@end-->
      <!--@foreach($mval['list'] as $key => $val)--><!--@if($val['text'])-->
        <li><a href="{$val['href']}" onfocus="this.blur();" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a>
        </li>
    <!--@end--><!--@end-->
      </ol>
    <!--@end-->
      {@$gnb_count++;}
    <!--@end--><!--@end-->

    <div id="topcon">
   <div id="topcon-inner">
        <!-- 공지 위젯 시작-->

        <!--/ 공지 위젯 끝-->
      </div>
    </div>

    <!-- 본문 -->
    <div id="content">
   <div id="body" style=<!--@if(!$layout_info->body_color)-->"background-color:#901315;"<!--@else-->"background-color:{$layout_info->body_color};"<!--@end--> />
      {$content}
        <div class="clear"> 
   </div> 
    </div>
    <!-- // 본문 끝 -->
   
    <!-- 우측메뉴 -->

    <!--@if($layout_info->colorset == "normal")-->
   <div id="rightColumn">
  
   <!-- 우측서브메뉴 -->
   <!--@if($menu_1st['list'])-->
   <div id="lnb_top"> </div>

     <ol id="lnb">
          <li><div id="subtitle">{$menu_1st['text']}</div></li>

      {@ $idx = 1 }
     <!--@foreach($menu_1st['list'] as $key => $val)--><!--@if($val['link'])-->
       <li <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a>

    <!-- main_menu 3차 시작 -->
    <!--@if($val['list'] && ($val['expand']=='Y'||$val['selected']) )-->
      <ul>
        <!--@foreach($val['list'] as $k => $v)--><!--@if($v['link'])-->
       <li <!--@if($v['selected'])-->class="on"<!--@end-->><a href="{$v['href']}" <!--@if($v['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$v['link']}</a></li>
     <!--@end--><!--@end-->
      </ul>
    <!--@end-->
          </li>
      {@$idx++}
   <!--@end--><!--@end-->
  </ol>
   <div id="lnb_btom"><img src="images/none.gif" /> </div>
   <!--@else--><!--@end-->
   <!-- /우측서브메뉴 -->

        <div class="title_r">Widgets</div>
          <div class="rightDiv">
            <!-- 이곳에 위젯삽입 하세요-->


        
   <!-- // 위젯삽입 끝 -->
          </div>
     </div><!--@else-->
   <!--@end-->

    <!-- // 우측메뉴 끝 -->

 <!-- 바닥 -->
 <div id="bottom">
      <ul class="b_menu">
        <!--@foreach($bottom_menu->list as $key => $val)--><!--@if($val['link'])-->
          <!--@if($val['selected'])-->
            {@ $menu_1st = $val }
          <!--@end-->

          <!--@if($val['selected'])--><!--@end--><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a> &nbsp;|

        <!--@endif--><!--@endforeach-->
  <!--@if($logged_info)-->
    <a href="{getUrl('+ 'act','dispMemberLogout')}">Logout</a>
       | <a href="{geturl('act','dispMemberInfo')}">MyInfo</a>   
    <!--@else-->
    <a href="{getUrl('act','dispMemberLoginForm')}">Login</a>
       | <a href="{getUrl('act','+ 'dispMemberSignUpForm')}">Join</a>
  <!--@end-->

     <!--@if($logged_info->is_admin=="Y")-->

       | <a href="{getUrl('act','dispLayoutAdminEdit','layout_srl',$layout_info->layout_srl)}">Edit</a>
       | <a href="{getUrl('act','dispLayoutAdminModify','layout_srl',$layout_info->layout_srl)}">Modify</a>
       | <a href="{getUrl('','module','admin')}" " onclick="window.open(this.href); return false;">Admin</a>
    <!--@else-->
       | <a href="javascript:bookmarksite('{$layout_info->fa}', '{$layout_info->index_url}')">Bookmark</a>
  <!--@end-->
       | <a href="{getUrl('','module','+ 'layout','act','dispLayoutInfo','selected_layout','mh_simple')}" onclick="popopen(this.href,'layoutSkinInfo'); return false;"><img src="images/buttonHelp.gif" alt="Skin Info" width="13" height="13"/></a>
      </ul>

      <ul class="footer" >       
        <!--@if(!$layout_info->copyright)--><!--@else-->{$layout_info->copyright} / <!--@end--><a href="mailto:{$layout_info->mail}" class="mail">Send E-mail.</a> / <a href="http://jcas.co.kr" onclick="window.open(this.href);return false;">By MoonHouse</a> / <a href="http://www.freewebsitetemplates.com" onclick="window.open(this.href);return false;">Free Website Templates</a> / <a href="http://www.zeroboard.com/" onclick="window.open(this.href);return false;"><img src="./images/powerdByXE.gif"></a>
      </ul>
     
   <ul class="b_text">
        <!--@if(!$layout_info->b_text1)--><!--@else-->{$layout_info->b_text1}<!--@end--><br />
        <!--@if(!$layout_info->b_text2)--><!--@else-->{$layout_info->b_text2}<!--@end-->
      </ul>
    </div>
 <!-- // 바닥 끝 -->

  </div>
</div>

이렇습니다.

어디에다 삽입해야 되는지하고 왜 하얗게 나오는지 알려주시면 감사드리겠습니다. ㅠ.ㅠ

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
똘이 카운터 표시 이상, 달력위젯 이상 [4] file 2009.04.13 by 팬텀
문현욱 HIM:L로 음악을 넣었습니다. [1] 2009.04.13 by narawiz
이상헌918 첫화면을 로그인 화면으로 할려고 하면은 ? [1] 2009.04.13 by SeeReal
sergiokang 관리자님, 제로보드 별첨기능이 안됩니다! [2] 2009.04.13 by sergiokang
하이우리 레이아웃 목록이 기본3개만 나오네요... 아시는분 꼭 답변점 부탁할께요 [3] file 2009.04.13 by 하이우리
0213008 게시판에 들어가서 글을 쓰려고 하면... [4] file 2009.04.13 by 0213008
HAM완소남 1.0.2에서 1.2.0으로 업그레이드 후 문제점. 도와주세요. [2] 2009.04.13 by DK
달리다굼 재차 질문드립니다.. [2] 2009.04.13 by 달리다굼
오승진443 게시판에서 php나 쿠키가 xe에서 먹는지 안먹나요?  
스포츠365 게시판분류관리에서요.. [2] 2009.04.13 by 강유리164
레시테 시도때도없이 뜨는 unexpected error occured [3] 2009.04.13 by 레시테
이성진336 [해결]최근 이미지위젯에서 섬네일생성 질문  
바요네트 질문합니다!!!! [1] 2009.04.13 by 백성찬
열공 확장변수 관련 [1] 2009.04.13 by 백성찬
goog XE 다운로드 파일이 어딨나요? [1] 2009.04.13 by 백성찬
복고열전 한글로된 파일은 업로드가 안되나요??????? [2] 2009.04.13 by sEaN383
김재섭462 이미지 첨부시 무반응 [2] 2009.04.13 by aa
Novaway 긴급합니다. 꼭 좀 도와주세요... [2] 2009.04.13 by Novaway
정정훈188 레이아웃 왼쪽에 로그인 넣기... file  
이기현 이게 뭡니까? 업데이트 했더니 자료가 다 날라갔습니다.