웹마스터 팁

블랙게시판 스킨을 사용해 볼려고 하니 다른 부분들은 어느정도 칼라를 바꾸어 볼 수가 있는데 에디터입력창의 글꼴 색상은 바꿀 수가 없네요,
아마 저의 생각으로는 에디터기 옵션에 글꼴색상을 변경 할 수 있어서 글꼴의 기본색상이 다른 곳에 지정되어져 있는 것 같습니다.
제가 찾아본 소스에서는 찾을 수가 없네요.
어디인가는 있을텐데......!

그래서 생각해낸 것이 에디터창안의 배경색상을 바꾸어 보기로 했다.

[수정파일] /zbxe/modules/editor/skins/default/editor.html 안에 136줄부터
    <!-- 에디터 출력 -->
    <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>
  style=" background-color:transparent;" 이 부분의 transparent(투명)   자신이 원하는 색상으로 바꾸어 주면 됩니다.

배경이미지를 넣고 싶으시면
  style="background:url(./modules/editor/skins/default/images/image.gif) no-repeat right top #ffffff;"

이렇게 소스를 변경하고 나면 에디터입력창 뿐만 아니라 댓글입력창도 함께 변경됩니다.

다른 글꼴들의 색상은 /css/editor.css 안을 살펴보면 버꿀 수 있습니다.