(완료) 최신글 페이지에서 아바타가 정렬되어 보이지 않습니다

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; }

이렇게 되어있습니다

워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기