latest.php에는
<div id="kboard-default-latest">
<table>
<thead>
<tr>
<th class="kboard-latest-title"><?php echo __('Title', 'kboard')?></th>
<th class="kboard-latest-user"><?php echo __('Author', 'kboard')?></th>
<th class="kboard-latest-date"><?php echo __('Date', 'kboard')?></th>
<th class="kboard-latest-view"><?php echo __('Views', 'kboard')?></th>
</tr>
</thead>
<tbody>
<?php while($content = $list->hasNext()):?>
<tr>
<td class="kboard-latest-title">
<a href="<?php echo $url->getDocumentURLWithUID($content->uid)?>">
<div class="kboard-default-cut-strings">
<?php if($content->isNew()):?><span class="kboard-default-new-notify">N</span><?php endif?>
<?php if($content->secret):?><img src="<?php echo $skin_path?>/images/icon-lock.png" alt="<?php echo __('Secret', 'kboard')?>"><?php endif?>
<?php echo $content->title?>
<span class="kboard-comments-count"><?php echo $content->getCommentsCount()?></span>
</div>
</a>
</td>
<td class="kboard-latest-user"><?php echo apply_filters('kboard_user_display', $content->member_display, $content->member_uid, $content->member_display, 'kboard', $boardBuilder)?></td>
<td class="kboard-latest-date"><?php echo $content->getDate()?></td>
<td class="kboard-latest-view"><?php echo $content->view?></td>
</tr>
<?php endwhile?>
</tbody>
</table>
</div>
게 입력했습니다.
css를 수정해야하나요?
많이 검색해보고 시도도 해 보았지만 초보라서 그런지 잘 모르겠습니다
이런식으로 둥근 아바타에 정렬되어 보이고 싶습니다.
현재 css 에는
#kboard-default-list .kboard-list table td.kboard-list-user { width: 200px; }
/* 작성자명 너비 */
#kboard-default-latest table .kboard-latest-user { width: 200px; }
/* 조회수 너비 */
#kboard-default-latest table .kboard-latest-view { width: 80px; }
#kboard-default-latest table .kboard-latest-user { text-align: center; }
#kboard-default-latest table .kboard-latest-view { text-align: center; }
@media screen and (max-width: 600px) {
/* 모바일에서 작성자명 안 보이게 */
#kboard-default-latest table .kboard-latest-user { display: none; }
/* 모바일에서 조회수 안 보이게 */
#kboard-default-latest table .kboard-latest-view { display: none; }
}
/* 최신글에서 제목 등등 제거 */
#kboard-default-latest table thead { display: none; }
이렇게 되어있습니다
안녕하세요~^^
KBoard 플러그인 Default 스킨 최신글에 작성자 명을 추가하셨다면
아래의 CSS 코드도 추가해서 확인해보시겠어요?
#kboard-default-latest table td.kboard-latest-user img.avatar { display: inline; margin: 0; width: 24px; max-width: none; height: 24px; vertical-align: middle; border-radius: 50%; }
만약, 위의 코드로도 해결되지 않으신다면
비회원으로도 확인 가능한 페이지 주소 알려주시면 살펴보겠습니다.
고맙습니다.
감사합니다!!
#kboard-default-latest table td.kboard-latest-user img.avatar { display: inline; max-width: none; vertical-align: middle; border-radius: 50%; }
마진, 높이, 넓이에 경고 뜨길래 삭제하게 입력했습니다.
잘 해결되었습니다. 정말 감사합니다.