썸네일 게시판 문의

https://imgur.com/a/PUzer

css 수정은 해보니깐,
게시물의 제목 글자수를 넘쳐서 작성해서 text-overflow를 적용하면
작성자 / 작성일 / 추천수 / 조회수가 저절로 다시 아래 테이블로 내려오더군요.
그래서 php 수정을 하였습니다.

섬네일 list.php 에서 작성자 / 작성일 / 추천수 / 조회수을 아래와 같이 수정하였습니다. 제목 바로 아래로 옮겼습니다.
그래서 잘 나오는데요,
작성자 / 작성일 / 추천수 / 조회수 폰트 크기와 폰트 컬러가 제목과 똑같이 되었습니다.
작성자 / 작성일 / 추천수 / 조회수가 폰트 크기가 약간 작고, 컬러는 진한 회색인데,
작성자 / 작성일 / 추천수 / 조회수 폰트 크기와 폰트 컬러를 원래대로 하려면 어디서 수정해야 할까요?
css로 해보니 제목 바로 아래로 옮겨서 그런지,
제목과
작성자 / 작성일 / 추천수 / 조회수,
둘 다 같이 변합니다.

수정전
<td class="kboard-list-title">
                        <a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>">
                            <div class="kboard-thumbnail-cut-strings">
                                <?php if($content->getThumbnail(96, 70)):?>
                                <div class="kboard-mobile-contents">
                                    <img src="<?php echo $content->getThumbnail(96, 70)?>" alt="" class="contents-thumbnail">
                                </div>
                                <?php endif?>
                                <?php if($content->isNew()):?><span class="kboard-thumbnail-new-notify">New</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>
                        <div class="kboard-mobile-contents">
                            <span class="contents-item kboard-user"><?php echo apply_filters('kboard_user_display', $content->member_display, $content->member_uid, $content->member_display, 'kboard', $boardBuilder)?></span>
                            <span class="contents-separator kboard-date">|</span>
                            <span class="contents-item kboard-date"><?php echo $content->getDate()?></span>
                            <span class="contents-separator kboard-vote">|</span>
                            <span class="contents-item kboard-vote"><?php echo __('Votes', 'kboard')?> <?php echo $content->vote?></span>
                            <span class="contents-separator kboard-view">|</span>
                            <span class="contents-item kboard-view"><?php echo __('Views', 'kboard')?> <?php echo $content->view?></span>
                        </div>
                    </td>


수정 후

<td class="kboard-list-title">
                        <a href="<?php echo $url->set('uid', $content->uid)->set('mod', 'document')->toString()?>">
                            <div class="kboard-thumbnail-cut-strings">
                                <?php if($content->getThumbnail()):?>
                                <div class="kboard-mobile-contents">
                                    <img src="<?php echo $content->getThumbnail()?>" alt="" class="contents-thumbnail">
                                </div>
                                <?php endif?>
                                <?php if($content->isNew()):?><span class="kboard-thumbnail-new-notify">New</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>
                                <p>    
                                <span class="contents-item kboard-user"><?php echo apply_filters('kboard_user_display', $content->member_display, $content->member_uid, $content->member_display, 'kboard', $boardBuilder)?></span>
                            <span class="contents-separator kboard-date">|</span>
                            <span class="contents-item kboard-date"><?php echo $content->getDate()?></span>
                            <span class="contents-separator kboard-vote">|</span>
                            <span class="contents-item kboard-vote"><?php echo __('Votes', 'kboard')?> <?php echo $content->vote?></span>
                            <span class="contents-separator kboard-view">|</span>
                            <span class="contents-item kboard-view"><?php echo __('Views', 'kboard')?> <?php echo $content->view?></span>
                            </div>
                            </a>
                       </td>

워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
워드프레스 에러 기술지원 서비스 전문가에게 맡기세요