textarea 태그가 어디있는지 알려주시면 감사드립니다;
스킨폴더내에 write.skin.php에는 없습니다.
div태그로 되어있습니다;;
<div class="contentArea write_div" style="margin-top:30px;">
<label for="" class="sound_only"></label>
<span class="subject">추가사항</span>
<div title="추가사항" class="contentInput <?php echo $is_dhtml_editor ? $config['cf_editor'] : ''; ?>">
<?php if($write_min || $write_max) { ?>
<!-- 최소/최대 글자 수 사용 시 -->
<p id="char_count_desc">이 게시판은 최소 <strong><?php echo $write_min; ?></strong>글자 이상, 최대 <strong><?php echo $write_max; ?></strong>글자 이하까지 글을 쓰실 수 있습니다.</p>
<?php } ?>
<?php echo $editor_html; // 에디터 사용시는 에디터로, 아니면 textarea 로 노출 ?>
<?php if($write_min || $write_max) { ?>
<!-- 최소/최대 글자 수 사용 시 -->
<div id="char_count_wrap"><span id="char_count"></span>글자</div>
<?php } ?>
</div>
</div>