묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
본문 에디터에 손대려고 하는데 ...
2008.07.01 11:40
파일첨부 │ 선택삭제 │ 본문삽입 ..
이 부분이 본문작성부분보다 상단에 올라오게 할 수 있는 방법이 없을까요 ?? ㅠ
아무리 손대도 잘 안되네요 ㅠ
댓글 2
-
老姜君
2008.07.01 11:47
-
리어코리아
2008.07.01 12:21
노강군(?)님 감사합니다. 저는 당연히 저렇게 자르면 안될 줄 알고 .. ㅠ
미쳐 시도도 해보지 않고 질문 올려서 죄송합니다.
노강군님 덕분에 간단히 해결하네요 ^^
진심으로 ..
감사드리옵니다.
modules\editor\skins\스킨이름\editor.html
파일 제일 아래부분에서
<!--@if($allow_fileupload)-->
<!-- 첨부파일 영역 -->
<!--%import("../../tpl/js/uploader.js")-->
<script type="text/javascript">//<![CDATA[
var zbxe_session_name = "{session_name()}";
var uploader_setting = { "allowed_filesize" : "{$file_config->allowed_filesize}", "allowed_filetypes" : "{$file_config->allowed_filetypes}", "allowed_filetypes_description" : "{$file_config->allowed_filetypes}" }
<!--@if(!$editor_manual_start)-->
editor_upload_init("{$editor_sequence}", '', "{$files_count}");
<!--@end-->
//]]></script>
<table cellspacing="0" class="fileAttach">
<col width="120" />
<col width="100%" />
<tr valign="top">
<td width="120"><div class="preview" id="preview_uploaded_{$editor_sequence}"><img src="./images/blank.gif" alt="preview" width="100" height="100" /></div></td>
<td>
<!-- 파일 업로드 영역 -->
<div class="fileListArea">
<select id="uploaded_file_list_{$editor_sequence}" multiple="multiple" size="5" class="fileList" onclick="editor_preview(this, '{$editor_sequence}');"></select>
</div>
<div class="fileUploadControl">
<a href="#" onclick="editor_upload_file('{$editor_sequence}');return false;" class="button"><span>{$lang->edit->upload_file}</span></a>
<a href="#" onclick="editor_remove_file('{$editor_sequence}');return false;" class="button"><span>{$lang->edit->delete_selected}</span></a>
<a href="#" onclick="editor_insert_file('{$editor_sequence}');return false;" class="button"><span>{$lang->edit->link_file}</span></a>
</div>
<div class="file_attach_info" id="uploader_status_{$editor_sequence}">{$upload_status}</div>
</td>
</tr>
</table>
<!--@end-->
를 잘라다가
<!-- 에디터 출력 -->
<div class="editor_iframe_box"><iframe id="editor_iframe_{$editor_sequence}" frameborder="0" height="{$editor_height}" style="background-color:transparent;" allowTransparency="true"></iframe></div>
<textarea id="editor_textarea_{$editor_sequence}" class="editor_iframe_textarea" style="display:none; height:{$editor_height}" rows="10" cols="10"></textarea>
<!-- 에디터 크기 조절 bar -->
<!--@if($enable_resizable)-->
<div class="textAreaDragIndicator"><div class="textAreaDragIndicatorBar" id="editor_drag_bar_{$editor_sequence}"></div></div>
<!--@end-->
위에다가 붙이면 될것 같은데요.