입력창 크기 조절 질문?

아래 URL

http://sebeol.org/gnuboard/bbs/write.php?bo_table=qna

내용 쓰는 란의 기본 크기를 조정하려면 소스 어느 부분을 건드려야 하나요?
gnuboard 어디서 어느부분을 건드려야 될지 모르겠…

[code:2qehfs30]try{

			nEditorWidth = elIFrame.contentWindow.document.body.scrollWidth || "500px";
			nEditorHeight = elIFrame.contentWindow.document.body.scrollHeight + 12;
			elIFrame.style.width =  "100%";
			elIFrame.style.height = nEditorHeight+ "px";
			elIFrame.contentWindow.document.body.style.margin = "0";
		}[/code:2qehfs30]

아래 링크를 참조하시고 위의 코드에서 width 를 변경하시면 될 것 같군요!

http://sebeol.org/gnuboard/plugin/edito ... Creator.js

input 타입이 아닌 <iframe> 태그로 변수만 넘겨 주므로 참조 하시고 높이 nEditorHeight는 스킨에서 결정하는 것 같습니다.
참조할 링크가 소스상에는 없으므로 단정하여 말씀 드리기는 곤란할 것 같습니다.

다만 스킨 또는 관련 소스상의 css 파일 또는 js파일에서 iframe과 관련된 scrollHeight, scrollWidth를 참조 하시기 바랍니다.
넓이는 100% 이므로 전체적인 프레임을 조절 하시면 될 것 같습니다.

아마도 아래 링크에 관련 설정이 존재할 것 같습니다.

http://sebeol.org/gnuboard/plugin/edito ... 2Skin.html

추가 사항

위에서 말씀 드린 파일이 참조하는 css 파일 smart_editor2.css 파일에서 se2_input_wysiwyg 항목이 넓이와 폭을 조절하네요!
높이와 넓이 모두 100% 인 것을 보면 넓이는 전체적인 프레임에 맞춰 조절이 가능 할 것이고
높이는 400px에 100% 이므로 se2_input_area의 높이를 조절 하시면 될 것 같습니다.

[code:2qehfs30]/* EDITINGAREA */
#smart_editor2 .se2_input_area { position: relative; z-index: 22; height: 400px; margin: 0; padding: 0; *zoom: 1; }

#smart_editor2 .se2_input_wysiwyg, #smart_editor2 .se2_input_syntax { display: block; overflow: auto; width: 100%; height: 100%; margin: 0; *margin: -1px 0 0 0; border: 0; }[/code:2qehfs30]
참조 하십시오.