묻고답하기

현재 제가 봉착한 문제는,

 

제가 사용하는 홈페이지에는 그룹아이콘과 레벨아이콘을 같이 사용하는데, 댓글에서 네임이 긴 회원의 경우는 회원의 닉네임의 뒷부분이

두번째줄로 내려갑니다.

 

 그래서 댓글에서 닉네임이 표시되는 가로 길이를 늘이고 싶은데, 그 위치를 찾고 싶습니다.

 

사용중인 스킨은 XE Official Skin 입니다 :-)

 

XE Official Skin의 파일구조가

 

+ css

 - black.css

 - board.css

 - button.css

 - pagination.css

 - white.css

+img

+screenshot

_footer.html

_header.html

_style.gallery.html

_style.list.html

_style.webzine.html

comment.html

comment_form.html

delete_comment_form.html

delete_form.html

delete_trackback_form.html

input_password_form.html

list.html

message.html

skin.xml

tag_list.html

trackback.html

view_document.html

write_form.html

 

 

img폴더와 screenshot는 제가 봐도 고쳐야 할곳은 아닌거 같구요.

 

아마..comment.html에서 무언가 고쳐야 할듯한데 찾아서 여기저기 width=100으로 넣어줬는데

 

새로고침 및 새로운 코멘트로 이리저리 쓰며 테스트 해봤는데 반응이 없더군요.

 

스킨찾고 파일 열어보시려면 번거로우니 아래로 복사했습니다...

 

------------------------------------------------------comment.html-------------------------------------------------------------------------------------------------------

 

<!--@if($oDocument->getCommentCount())-->
<hr class="hr" />
<div class="feedbackList" id="reply">

 <h3 class="feedbackHeader">
  <!--@if($grant->write_comment && $oDocument->allowComment()) -->
   {$lang->comment} <em>'{$oDocument->getCommentcount()}'</em>
  <!--@end-->
 </h3>
 
 <div class="replyList">

  {@ $_comment_list = $oDocument->getComments() }
  <!--@foreach($_comment_list as $key => $comment)-->
    <div class="item <!--@if($comment->get('depth'))-->itemReply<!--@end-->" id="comment_{$comment->comment_srl}">
     <div class="indent" <!--@if($comment->get('depth'))--> style="margin-left:{($comment->get('depth'))*15}px" <!--@end-->>
     
     <div class="itemAside">
                        <!--@if($comment->getProfileImage())-->
                            <img src="{$comment->getProfileImage()}" alt="profile" class="profile" />
                        <!--@end-->
      <h4 class="header">
      <!--@if(!$comment->member_srl)-->
       <!--@if($comment->homepage)-->
        <a href="{$comment->homepage}" onclick="window.open(this.href);return false;">{$comment->getNickName()}</a>
       <!--@else-->
        <td width="200">{$comment->getNickName()*50}</td>
       <!--@end-->
      <!--@else-->
       <a href="#popup_menu_area" class="member_{$comment->member_srl}" onclick="return false">{$comment->getNickName()}</a>
      <!--@end-->
      </h4>
 
      <p class="meta">
       {$comment->getRegdate('Y.m.d')}
       {$comment->getRegdate('H:i:s')}
      <!--@if($grant->manager || $module_info->display_ip_address!='N')-->
       <br />{$comment->getIpaddress()}
      <!--@end-->
      </p>
      
      <!--@if($comment->get('voted_count')!=0 || $comment->get('blamed_count') != 0)-->
      <dl class="vote">
       <dt class="love"><span>{$lang->cmd_vote}</span></dt>
       <dd>{$comment->get('voted_count')?$comment->get('voted_count'):0}</dd>
       <dt class="hate"><span>{$lang->cmd_vote_down}</span></dt>
       <dd>{$comment->get('blamed_count')?$comment->get('blamed_count'):0}</dd>
      </dl>
      <!--@end-->
      
     </div>
 
                    <div class="itemContent">
     <!--@if(!$comment->isAccessible())-->
      <form action="./" method="get" onsubmit="return procFilter(this, input_password)" class="secretMessage">
      <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')}" />
       <p>&quot;{$lang->msg_is_secret}&quot;</p>
       <dl>
        <dt><label for="cpw">{$lang->password}</label> :</dt>
        <dd><input type="password" id="cpw" name="password" class="inputText" /><span class="buttonOfficial"><input type="submit" value="{$lang->cmd_input}" /></span></dd>
       </dl>
      </form>
     <!--@else-->
     {$comment->getContent(false)}

     <!--@if($comment->hasUploadedFIles())-->
     <dl class="attachedFile">
      <dt><img src="./img/common/iconFiles.gif" width="27" height="11" alt="{$lang->uploaded_file}" /> <button type="button" class="fileToggle" onclick="jQuery(this).parents('dl.attachedFile').toggleClass('open');return false;">{$lang->uploaded_file} ({$comment->get('uploaded_count')})</button></dt>
      <dd>
       <ul class="files">
        {@ $_uploaded_files = $comment->getUploadedFiles() }
        <!--@foreach($_uploaded_files as $key => $file)-->
        <li><a href="{getUrl('')}{$file->download_url}">{$file->source_filename} <span class="bubble">[File Size:{FileHandler::filesize($file->file_size)}/Download{number_format($file->download_count)}]</span></a></li>
        <!--@end-->
       </ul>
      </dd>
     </dl>
     <!--@end-->

     <ul class="option">
     <!--@if($is_logged)-->
      <li class="wouldYou"><a href="#popup_menu_area" class="comment_{$comment->comment_srl}">{$lang->cmd_comment_do}</a></li>
     <!--@end-->
      <li><a href="{getUrl('act','dispBoardReplyComment','comment_srl',$comment->comment_srl)}">{$lang->cmd_reply}</a></li>
     <!--@if($comment->isGranted() || !$comment->get('member_srl'))-->
      <li><a href="{getUrl('act','dispBoardModifyComment','comment_srl',$comment->comment_srl)}">{$lang->cmd_modify}</a></li>
      <li><a href="{getUrl('act','dispBoardDeleteComment','comment_srl',$comment->comment_srl)}">{$lang->cmd_delete}</a></li>
     <!--@end-->
     </ul>

     <!--@end-->

                    </div>
     
    </div>
    <!--@if($comment->get('depth'))-->
   <!--@end-->
   
  </div>
  <comment_page_navigation">!--@if($oDocument->comment_page_navigation)-->
    <div class="pagination">
        <a href="{getUrl('cpage',1)}#comment" class="prevEnd">{$lang->first_page}</a>
        <!--@while($page_no = $oDocument->comment_page_navigation->getNextPage())-->
            <!--@if($cpage == $page_no)-->
                <strong>{$page_no}</strong>
            <!--@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="nextEnd">{$lang->last_page}</a>
    </div>
    <!--@end-->

 

 

------------------------------------------------------comment.html   끝입니다----------------------------------------------------------------------------------------

 

 


글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
June Oh $document_list 외에 게시판 글 목록을 제한 없이 모두 불러오는 방법? file  
awdksjawujdgh xe로그인폼달기 [2] 2009.08.18 by awdksjawujdgh
오스카 모르지오_레이아웃에 "플래시" 삽입이 안 되어서요... [7] 2009.08.18 by 오스카
분홍곰 댓글의 닉네임이 두줄로 표시되는 문제 [2] 2009.08.18 by 분홍곰
이승우808 제로보드 공식 레이아웃[현재사용중인레이아웃] v2에서  
창환 엮인글 발송이 안됩니다. [1]  
닥다리 ㄷㄷ플래닛 설치 어떻게 하죠?? [1] 2009.08.18 by June Oh
artistfall 스킨적용만 하면 백지상태. [1] 2009.08.18 by June Oh
김철홍 zb4처럼 회원그룹..  
수이12 로그인/ftp 설정 시 오류 문제  
artistfall 게시판 아래에 달리는것. [1] 2009.08.18 by June Oh
황영욱 설문지, 견적의뢰 같은 폼이 있나요? [1] 2009.08.18 by June Oh
하면되냐 홈페이지제작하는법점알려주실분.!내용필! [1] 2009.08.18 by 백성찬
베베 getHomepageUrl()에서요..? [2] 2009.08.18 by 베베
victoria 게시판에서 복사를 누르고 모듈 설정 했는데 [1] 2009.08.18 by carnby
전기코드 상단메뉴 클릭해서 새창 띄우고 싶을때. file  
스마일츄츄 업데이트이후 잘나오던 사진첩리스트가 깨져서 나옵니다. [7] file 2009.08.18 by gogi
카페 카페기능 사용하시는분들!!!!  
위키 위키는 어떻게 사용하는건가요? [4] 2009.08.18 by 위키
아담하와 투표관련 질문드립니다. 많은 분들이 궁금해하실것 같네요. [1] 2009.08.18 by 아담하와
왜만지냐 관리자페이지에서 언어선택 안되요^^;; [2] file 2009.08.18 by 왜만지냐
미르캣 메뉴목록을 관리자창에서 볼 수가 없습니다.  
새우꽝 포토샵 강좌 없어졌나요?;;  
조용현596 호스팅 업체에 따른 권한 문제 예상 [2] 2009.08.18 by 조용현596
sice115 hello there, any ways from XOOPS to xpressengine? [11] 2009.08.18 by 无忧天空
상오기 통합검색에 확장변수를 추가하려면? [2] 2009.08.18 by 상오기
Topblue 게시판 목록에 나타나는 ''글수''를 선택한 카테고리명으로 바꾸려면... file  
왜만지냐 설치시 언어선택 문의 "영어가 기본" [2] 2009.08.18 by 왜만지냐
다니엘SEO 이전후 403에러라면서 경고창이 뜹니다. [1] file 2009.08.18 by 백성찬
바부바부 윈도우 서버에 xe 설치 [1] 2009.08.18 by 백성찬