묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
글쓰기 창 높이 줄이기
2007.09.19 14:02
안녕하세요.
첨부 그림처럼 글쓰는 창이 너무 넓어서 지금이 100%라면 20%정도로 하여 사용 하고 싶은데
어떻게 하는지 알려 주시면 감사하겠습니다.
첨부 그림처럼 글쓰는 창이 너무 넓어서 지금이 100%라면 20%정도로 하여 사용 하고 싶은데
어떻게 하는지 알려 주시면 감사하겠습니다.
댓글 5
-
객
2007.09.19 15:20
-
greengas
2007.09.19 17:02
감사합니다.
근데 20%로 축소 했는데도 크기는 그대로네요..
혹시 제가 뭐라도 실수를.... -
greengas
2007.09.19 17:07
50%로 해도 한줄밖에 안되고, 100%도 마찬 가진데
반 정도로 줄일 수는 없나요 -
팔공산
2007.09.20 03:31
/modules/board/board.view.php 파일에서 203줄 조절하면 됩니다.
// 에디터 모듈의 getEditor를 호출하여 세팅
$oEditorModel = &getModel('editor');
$option->primary_key_name = 'document_srl';
$option->content_key_name = 'content';
$option->allow_fileupload = $this->grant->fileupload;
$option->enable_autosave = true;
$option->enable_default_component = true;
$option->enable_component = true;
$option->resizable = true;
$option->height = 400;
$editor = $oEditorModel->getEditor($document_srl, $option);
Context::set('editor', $editor); -
greengas
2007.09.20 11:18
감사합니다.
속이 후련 하네요.
<!-- 에디터 출력 -->
<div class="editor_iframe_box"><iframe id="editor_iframe_{$editor_sequence}" frameborder="0" width="100%" height="{$editor_height}" style="background-color:transparent;"></iframe></div>
여기서 height 값에 원하는 퍼센트 넣으시면 될듯....