묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
로그인 위젯 아래로 캘린더나 시계 위젯을 넣는 방법?
2008.12.07 19:56
로그인 위젯 밑으로 다른 위젯이 절대 안들어가지던데 어떻게 해야하나요?
먼저 감사들입니다.
댓글 7
-
느까끼
2008.12.07 19:59
레이아웃 편집에 들어가서 로그인 위젯 바로 아래에 소스를 넣어보세요. -
js Lee
2008.12.07 20:44
느까끼님은 초보에 맘을 넘 몰라요 ㅠㅠ. 소스를 어디서 찾죠? 그리고 레이어에 넣으면 페이지마다 다 나오는거 아닌가요?저는 메인 페이지에만 보이게 하고 싶은데 로그인 박스 밑으로 정렬이 안되서요. 그리고 혹시 아시면 다른곳에서는 로그인 박스도 없에는 법 아시나요? 다시 한번 감사합니다. -
느까끼
2008.12.07 21:13
레이아웃 소스 올려보세요.
레이아웃 편집에 있는 내용 복사하여 올려보세요. -
js Lee
2008.12.07 21:40
<!-- js 파일 import --> <!--%import("js/xe_official.js")--> <!-- 레이아웃과 연동될 css 파일 import --> <!--@if($layout_info->colorset == "white")--> <!--%import("css/white.css")--> <!--@elseif($layout_info->colorset == "black")--> <!--%import("css/black.css")--> <!--@else--> <!--%import("css/default.css")--> <!--@end--> <!--@if($layout_info->background_image)--> <style type="text/css"> body { background:#FFFFFF url({getUrl()}{$layout_info->background_image}) repeat-x left top; } </style> <!--@end--> <!--@if(!$layout_info->colorset)--> {@$layout_info->colorset = "default"} <!--@end--> <div id="bodyWrap"> <div id="header"> <h1><a href="{$layout_info->index_url}"><!--@if(!$layout_info->logo_image)--><img src="./images/{$layout_info->colorset}/zeroBoardXE.png" alt="ZeroBoard™ XE" class="iePngFix" /><!--@else--><img src="{$layout_info->logo_image}" alt="logo" border="0" class="iePngFix" /><!--@end--></a></h1> <div id="language"> <strong title="{$lang_type}">{$lang_supported[$lang_type]}</strong> <a href="#selectLang" onclick="showHide('selectLang');return false;"><img src="./images/{$layout_info->colorset}/buttonLang.gif" alt="Select Language" width="87" height="15" /></a> <ul id="selectLang"> <!--@foreach($lang_supported as $key => $val)--><!--@if($key!= $lang_type)--> <li><a href="#" onclick="doChangeLangType('{$key}');return false;">{$val}</a></li> <!--@end--><!--@end--> </ul> </div> <div id="gnb_bar"></div> <!--GNB--> <ul id="gnb"> <!-- main_menu 1차 시작 --> {@ $idx = 1 } <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['text'])--> <!--@if($val['selected'])--> {@ $menu_1st = $val } <!--@end--> <li onMouseOver="menu({$idx});" <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text']}</a></li> <!--@end--> {@$idx++} <!--@end--> <!-- main_menu 1차 끝 --> </ul> <script language="javascript1.2"> var menuLen={$idx-1}; </script> <!--히든 레이어 메뉴--> <!-- main_menu 1차 시작 --> {@ $idx = 1 } <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['text'])--> <!--2차메뉴--> <div class="subMenu" id="subMenu_{$idx}" style="<!--@if($val['selected'])-->display:block;<!--@else-->display:none;<!--@end-->"> <!--@foreach($val['list'] as $key1 => $val1)--><!--@if($val1['text'])--> <!--@if($val1['selected'])--><!--@end--> <a id="lnb1" href="{$val1['href']}" <!--@if($val1['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val1['text']}</a> <!--@end--> <!--@end--> </div> <!--@end--> {@$idx++} <!--@end--> <!-- main_menu 1차 끝 --> <!--//GNB--> <form action="{getUrl()}" method="post" id="isSearch"> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="hidden" name="search_target" value="title_content" /> <input name="is_keyword" type="text" class="inputText" title="keyword" /> <input type="image" src="./images/{$layout_info->colorset}/buttonSearch.gif" alt="{$lang->cmd_search}" class="submit" /></form> </div> <div id="contentBody"> <div id="columnLeft"> <!-- 로그인 --> <img class="zbxe_widget_output" widget="login_info" skin="xe_official" colorset="default" /> <!-- 왼쪽 2차 메뉴 --> <img src="./images/blank.gif" alt="" class="mask" /> <!--@if($menu_1st)--> <ol id="lnb"> {@ $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> <!--@end--> <img src="./images/blank.gif" alt="" class="mask" /> </div> <div id="columnRight"> <!-- 컨텐츠 시작 --> {$content} </div> </div> <ul id="footer"> <!--@foreach($bottom_menu->list as $key => $val)--> <li><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['link']}</a></li> <!--@end--> <div class="first-child"> <address> <a href="http://www.zeroboard.com" onclick="window.open(this.href);return false;"><img src="./images/white/zeroBoardXE.png" alt="Powered By ZeroBoard" /></a> * <a href="http://www.sound4u.net" onclick="window.open(this.href);return false;"><img src="./images/white/designed_by_sound4u.png" alt="Designed By sound4u" /></a> </address> </div> </ul> <!-- COPYRIGHT 에 관한 문구는 여기서 변경하세요 --> <div id=cright>Copyright © All rights reserved.</div> </div>레이아웃 소스입니다.감사합니다.참고로 애플 스킨 입니다. 여기서 sound4U 님이 만드신... -
느까끼
2008.12.07 21:58
빨간부분이 플래시 시계 위젯 생성 소스
<!-- js 파일 import --> <!--%import("js/xe_official.js")--> <!-- 레이아웃과 연동될 css 파일 import --> <!--@if($layout_info->colorset == "white")--> <!--%import("css/white.css")--> <!--@elseif($layout_info->colorset == "black")--> <!--%import("css/black.css")--> <!--@else--> <!--%import("css/default.css")--> <!--@end--> <!--@if($layout_info->background_image)--> <style type="text/css"> body { background:#FFFFFF url({getUrl()}{$layout_info->background_image}) repeat-x left top; } </style> <!--@end--> <!--@if(!$layout_info->colorset)--> {@$layout_info->colorset = "default"} <!--@end--> <div id="bodyWrap"> <div id="header"> <h1><a href="{$layout_info->index_url}"><!--@if(!$layout_info->logo_image)--><img src="./images/{$layout_info->colorset}/zeroBoardXE.png" alt="ZeroBoard™ XE" class="iePngFix" /><!--@else--><img src="{$layout_info->logo_image}" alt="logo" border="0" class="iePngFix" /><!--@end--></a></h1> <div id="language"> <strong title="{$lang_type}">{$lang_supported[$lang_type]}</strong> <a href="#selectLang" onclick="showHide('selectLang');return false;"><img src="./images/{$layout_info->colorset}/buttonLang.gif" alt="Select Language" width="87" height="15" /></a> <ul id="selectLang"> <!--@foreach($lang_supported as $key => $val)--><!--@if($key!= $lang_type)--> <li><a href="#" onclick="doChangeLangType('{$key}');return false;">{$val}</a></li> <!--@end--><!--@end--> </ul> </div> <div id="gnb_bar"></div> <!--GNB--> <ul id="gnb"> <!-- main_menu 1차 시작 --> {@ $idx = 1 } <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['text'+ '+ '])--> <!--@if($val['selected'])--> {@ $menu_1st = $val } <!--@end--> <li onMouseOver="menu({$idx});" <!--@if($val['selected'])-->class="on"<!--@end-->><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['text'+ ']}</a></li> <!--@end--> {@$idx++} <!--@end--> <!-- main_menu 1차 끝 --> </ul> <script language="javascript1.2"> var menuLen={$idx-1}; </script> <!--히든 레이어 메뉴--> <!-- main_menu 1차 시작 --> {@ $idx = 1 } <!--@foreach($main_menu->list as $key => $val)--><!--@if($val['text'])--> <!--2차메뉴--> <div class="subMenu" id="subMenu_{$idx}" style="<!--@if($val['selected'])-->display:block;<!--@else-->display:none;<!--@end-->"> <!--@foreach($val['list'] as $key1 => $val1)--><!--@if($val1['text'])--> <!--@if($val1['selected'])--><!--@end--> <a id="lnb1" href="{$val1['href']}" <!--@if($val1['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val1['text']}</a> <!--@end--> <!--@end--> </div> <!--@end--> {@$idx++} <!--@end--> <!-- main_menu 1차 끝 --> <!--//GNB--> <form action="{getUrl()}" method="post" id="isSearch"> <input type="hidden" name="mid" value="{$mid}" /> <input type="hidden" name="act" value="IS" /> <input type="hidden" name="search_target" value="title_content" /> <input name="is_keyword" type="text" class="inputText" title="keyword" /> <input type="image" src="./images/{$layout_info->colorset}/buttonSearch.gif" alt="{$lang->cmd_search}" class="submit" /></form> </div>
<div id="contentBody">
<div id="columnLeft">
<!-- 로그인 -->
<img class="zbxe_widget_output" widget="login_info" skin="xe_official" colorset="default" />
<!-- 플래시 시계 -->
<img class="zbxe_widget_output" widget="DroArc_clock" skin="default" colorset="normal" />
<!-- 왼쪽 2차 메뉴 --> <img src="./images/blank.gif" alt="" class="mask" /> <!--@if($menu_1st)--> <ol id="lnb"> {@ $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> <!--@end--> <img src="./images/blank.gif" alt="" class="mask" /> </div> <div id="columnRight"> <!-- 컨텐츠 시작 --> {$content} </div> </div> <ul id="footer"> <!--@foreach($bottom_menu->list as $key => $val)--> <li><a href="{$val['href']}" <!--@if($val['open_window']=='Y')-->onclick="window.open(this.href);return false;"<!--@end-->>{$val['+ 'link']}</a></li> <!--@end--> <div class="first-child"> <address> <a href="http://www.zeroboard.com/" onclick="window.open(this.href);return false;"><img src="./images/white/zeroBoardXE.png" alt="Powered By ZeroBoard" /></a> * <a href="http://www.sound4u.net" onclick="window.open(this.href);return false;"><img src="./images/white/designed_by_sound4u.png" alt="Designed By sound4u" /></a> </address> </div> </ul> <!-- COPYRIGHT 에 관한 문구는 여기서 변경하세요 --> <div id=cright>Copyright © All rights reserved.</div> </div> -
js Lee
2008.12.07 22:04
아 너무 감사합니다. 근데 이런 시계같은 소스는 어디서 나와있나요? 위제 프로그램 안에 있나여?넘 복잡하면 말씀 안해주셔도 되고요. 암튼 너무 너무 감사합니다.달력 위젯은 제가 한번 해보겠습니다.다시 한번 감사드리고 복 받으세요. -
느까끼
2008.12.08 10:28
xe/widgets 폴더에 있습니다.
자료실에서 위젯 스킨을 다운 받아서 압축을 푼후 폴더째로 업로드 시키면됩니다.
그리고 레이아웃은 레이아웃 편집 상단부에 위젯 선택하는 곳이 나와있고,
페이지는 페이지수정에 들어가면 하단부에 위젯 선택버튼이 있습니다.