묻고답하기

[설명]
comment.html 파일은 코멘트 목록을 출력하는 스킨파일인데, 이곳에서 제일 처음 나오는 DIV 객체의 ID를 적으면 됩니다.
없다면 id="[아이디명]" 을 추가합니다.
아래 comment.html 파일입니다 ID를 어디에 어떻게 적으라는건가요.? 설명글을 보고 또봐도 모르기때문에 물어보는것입니다.
.................................................................

<!--@if($oDocument->getCommentCount())-->
<div class="replyBox">
    <div class="outterGlow">

    {@ $_comment_list = $oDocument->getComments() }
    <!--@foreach($_comment_list as $key => $comment)-->

        <div class="replyItem <!--@if($comment->get('depth'))-->reply<!--@end-->">
            <!--@if($comment->get('depth'))-->
            <div style="margin-left:{($comment->get('depth')-1)*20}px" class="replyIndent">
            <!--@end-->

            <a name="comment_{$comment->comment_srl}"></a>

            <div class="replyOption">
                <!--@if($comment->isGranted() || !$comment->get('member_srl'))-->
                    <a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$comment->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonDeleteX.gif" alt="{$lang->cmd_delete}" width="14" height="14" /></a>
                    <a href="{getUrl('act','dispBoardModifyComment','comment_srl',$comment->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonModifyE.gif" alt="{$lang->cmd_modify}" width="14" height="14" /></a>
                <!--@end-->
                    <a href="{getUrl('act','dispBoardReplyComment','comment_srl',$comment->comment_srl)}"><img src="./images/{$module_info->colorset}/buttonReply.gif" alt="{$lang->cmd_reply}" width="14" height="14" /></a>
            </div>

            <!--@if($comment->get('voted_count')!=0 || $comment->get('blamed_count') != 0)-->
            <div class="voted">
                ({$lang->voted_count}:
                <strong>{$comment->get('voted_count')?$comment->get('voted_count'):0}</strong> / <strong>{$comment->get('blamed_count')?$comment->get('blamed_count'):0}</strong>)
            </div>
            <!--@end-->

            <div class="clear"></div>

            <div class="avatar">
       <!--@if($comment->getProfileImage())-->
                    <img src="{$comment->getProfileImage()}" alt="profile" class="commentProfileImage" />
                    <!--@else-->
     <img src="./images/glossary/noimage.jpeg" width="25" height="25" alt="profile" class="commentProfileImage" />
       <!--@end-->
   </div>
   
   <div class="replyContent">
                <!--@if(!$comment->isAccessible())-->
                    <!--%import("filter/input_password.xml")-->
                    <div class="secretContent">
                        <form action="./" method="get" onsubmit="return procFilter(this, input_password)">
                        <input type="hidden" name="mid" value="{$mid}" />
                        <input type="hidden" name="page" value="{$page}" />
                        <input type="hidden" name="document_srl" value="{$comment->get('document_srl')}" />
                        <input type="hidden" name="comment_srl" value="{$comment->get('comment_srl')}" />
                            <div class="title">{$lang->msg_is_secret}</div>
                            <div class="content"><input type="password" name="password" class="inputTypeText" /><span class="button"><input type="submit" value="{$lang->cmd_input}" accesskey="s" /></span></div>
                        </form>
                    </div>
                <!--@else-->
     
     <div class="author">
                        <!--@if(!$comment->member_srl)-->
                            <!--@if($comment->homepage)-->
                            <a href="{$comment->homepage}" onclick="window.open(this.href);return false;">{$comment->getNickName()}</a>
                            <!--@else-->
                            {$comment->getNickName()}
                            <!--@end-->
                        <!--@else-->
                        <div class="member_{$comment->member_srl}">{$comment->getNickName()}</div>
                        <!--@end-->
                    </div>
   
                    {$comment->getContent(true)}
                <!--@end-->
                <div class="clear"></div>
    
    <div class="date">
                    <strong>{$comment->getRegdate('Y.m.d')}</strong> {$comment->getRegdate('H:i:s')}
                    <!--@if($grant->is_admin)-->
                    ({$comment->get('ipaddress')})
                    <!--@end-->
                </div><!--date out -->
   
            </div>

            <!--@if($comment->hasUploadedFIles())-->
                <div class="fileAttached">
                    <ul>
                        {@ $_uploaded_files = $comment->getUploadedFiles() }
                        <!--@foreach($_uploaded_files as $key => $file)-->
                        <li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})({number_format($file->download_count)})</a></li>
                        <!--@end-->
                    </ul>
                    <div class="clear"></div>
                </div>
            <!--@end-->

            <!--@if($comment->get('depth'+ '+ '))-->
            </div>
            <!--@end-->
        </div>
    <!--@end-->

    <!-- 댓글 페이지 네비게이션 -->
    <!--@if($oDocument->comment_page_navigation)-->
    <div class="pageNavigation">
        <a href="{getUrl('cpage',1)}#comment" class="goToFirst"><img src="./images/common/bottomGotoFirst.gif" alt="{$lang->first_page}" width="7" height="5" /></a>
        <!--@while($page_no = $oDocument->comment_page_navigation->getNextPage())-->
            <!--@if($cpage == $page_no)-->
                <span class="current">{$page_no}</span>
            <!--@else-->
                <a href="{getUrl('cpage',$page_no)}#comment">{$page_no}</a>
            <!--@end-->
        <!--@end-->
        <a href="{getUrl('cpage',$oDocument->comment_page_navigation->last_page)}#comment" class="goToLast"><img src="./images/common/bottomGotoLast.gif" alt="{$lang->last_page}" width="7" height="5" /></a>
    </div>
    <!--@end-->
    </div><!--outterGlow out -->
</div>
<!--@end-->
.........................................................

원문이있는 게시물 엑티브박스 애드온
http://www.zeroboard.com/17006894

글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
테사카 {$layout_info->logo_image} 같은것들. [3] 2009.01.18 by 만쓰별(정만)
miso777 액티브박스 애드온 환경설정이요.? [2] 2009.01.18 by 만쓰별(정만)
한윤성628 제로보드 xe는 제로보드4처럼 사용이 불가능한가요? [3] 2009.01.18 by 한윤성628
한윤성628 제로보드 xe 사용시 홈피 초기 화면 [3] 2009.01.18 by 한윤성628
이대성931 일본어<=>한국어<=> 영어 메뉴항목 전환 사이트 [5] 2009.01.18 by 이대성931
miso777 액티브박스 애드온 id 추가를 어떻게 하나요  
바람의쉼터 제로보드 삭제 도와주세요 [2] 2009.01.18 by 까치80
청개구리00 도메인 고정시키려면..? 고수님들 좀 알려주세요.. [2] 2009.01.18 by 만쓰별(정만)
s27678 새글표시기능 문제요ㅠㅠ [3] file 2009.01.18 by s27678
namsoo 모듈과 레이아웃 연결에 대해서 [5] 2009.01.18 by 느까끼
adsfh 제로보드XE 파일첨부가능하게 수정한이후 [1] 2009.01.18 by 느까끼
까치80 제로보드 재설치 [2] 2009.01.18 by 애치티
스바루 외부페이지에서 디비접속하여 쿼리전송후 결과값받아오려면? [2] 2009.01.18 by 스바루
아자 XE 스키마 정보 어디서 확인하죠? [1] 2009.01.18 by 아자
익스엔진 게시판 글 작성시 pre [1] 2009.01.18 by 애치티
함께해요! xe게시판 확장변수에 한국주소 나오게 하려면... [2] 2009.01.18 by 함께해요!
썬더스톰 planet(Microblog) 생성방법좀..... [1] 2009.01.18 by 느까끼
큰일 메뉴가 다 날라갔습니다. 추가도 안됩니다ㅠㅠ [1] 2009.01.18 by 느까끼
달리다굼 zbxe 1.0 => xe 1.14 로 안전하게 업데이트를 어떻게 해야하나요? [1] 2009.01.18 by 느까끼
happytree 제로보드 4 캐릭터셋 [1] 2009.01.18 by 비나무
제트스윙 관리자 페이지에 보면 "스팸필터"에 금지단어라는것이 있습니다. [1] 2009.01.18 by 테스트
철시 관리자 프로그램 아이디, 비밀번호가 먹히지 않아요? [2] 2009.01.18 by 지연아빠
스팸테스트 스팸테스트 [1] 2009.01.18 by 지연아빠
한유누리 이해가 가지 않습니다. [1] 2009.01.18 by ?
권순성698 제로보드4 상단에 출력할 내용에 자바스크립트를 쓰면 오류가 납니다 [1] 2009.01.18 by 비나무
한재민515 제로보드 XE로 넘어오려고 하는데요 ^^ [3] 2009.01.18 by 한재민515
독도친구 백업SQL 다른게시판에서 제로보드로 데이터 이전 sql 질문이요. [2] 2009.01.18 by 독도친구
ee 최근 문서 출력시 첫번째 글 내용 보이게 어떻게 하나요 [2] 2009.01.18 by ee
못먹는감 포인트 초기화는 안되는지요? [3] 2009.01.18 by BlueGATE
Lolicon 저 이런 오류가... [1] file 2009.01.18 by 만쓰별(정만)