태터에 제로보드 게시판 끼워 넣기

여기에 있는 팀으로 해도 안되서 직접 만졋습니다.
제로보드든 티티보드든상관 없습니다.
저는 위치로그 사용하지를 않아서 소스 몇개 추가해서 제로보드 게시판 넣어습니다.
이소스는 내용물이 많아지면 자동으로 스크롤 된다는 점입니다.
사용하고 있는 스킨의 skin.html을 열어서 아래 소스를 넣어줍니다.
<script Language='javascript'>
var ifrmHeight;
var objFrame;
var str;
var cstr;

function init() {
                try{
                        objFrame = document.all["ifrm"];
                        str = window.clipboardData.getData("Text");
                        cstr = str.split("|");
                        ifrmHeight= eval(cstr[1]);        
        }catch(e){
                }
}

function reSize() {
                try{                        
                        if (ifrmHeight > 240) {
                                        objFrame.style.height = ifrmHeight;
                        }else{
                                        objFrame.style.height = 240;
                        }                       
        }catch(e){
                }
}

function init_iframe() {        
        reSize();        
        setTimeout("init_iframe()",100);
}

init_iframe();
</script>
두번째 변경하고자 하는 위치에 아래 소스를 넣어 줍니다.
<iframe src="게시판 주소" name="ifrm" width="100%" height="100%" marginwidth="0" marginheight="0" frameborder="no" onload="init()" scrolling="no"></iframe>
게시판 관리에 들어가서게시판 하단에 출력될 내용에 아래 소스를 추가해 줍니다.
<script language="javascript">
window.clipboardData.setData('Text', document.body.scrollWidth+"|"+document.body.scrollHeight);
</script>
그럼 끝입니다.
안되면 말씀 하세요
적용된 홈페이지 http://minwoohouse.co.kr

출처:
http://retro.tattertools.com/ko/bbs/view.php?id=tip&page=1&sn1=&divpage=1&sn=off&ss=on&sc=on&keyword=%EC%A0%9C%EB%A1%9C%EB%B3%B4%EB%93%9C&select_arrange=headnum&desc=asc&no=215

이 글은 "씨디맨" 의 동의 없이 전문 재배포 금지. 링크 및 트랙백은 허가 없이 무제한 허용 *  [자세히보기]