사용자: 게시판스킨 읽기 작성자 정보 스타일

This commit is contained in:
whitedot
2013-01-28 14:17:16 +09:00
parent 08e3b21846
commit ddbb560548
2 changed files with 4 additions and 10 deletions

View File

@ -263,9 +263,9 @@ table a {color:#000;text-decoration:none}
#bo_v {position:relative;margin-bottom:30px}
#bo_v a {color:#000;text-decoration:none}
#bo_v_h1 {padding:30px 20px 10px;font-size:1.2em;line-height:1.4em}
#bo_v_info {padding:0 20px 15px}
#bo_v_info {padding:0 20px 15px;border-bottom:1px solid #f0f0f0}
#bo_v_info h2 {margin:0;padding:0;height:0;overflow:hidden}
#bo_v_info strong {display:inline-block;margin:0 10px 0 5px;font-weight:normal}
#bo_v_info strong {display:inline-block;margin:0 15px 0 5px;font-weight:normal}
#bo_v_top {zoom:1}
#bo_v_top:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_top h2 {margin:0;padding:0;height:0;overflow:hidden}
@ -314,6 +314,7 @@ table a {color:#000;text-decoration:none}
#bo_vc h1 {display:inline-block;margin:15px 10px 5px 0}
#bo_vc a {color:#000;text-decoration:none}
#bo_vc p {padding:0 0 5px;line-height:1.8em}
#bo_vc p a {text-decoration:underline}
#bo_vc fieldset {margin:0 0 10px;padding:0}
#bo_vc_w {zoom:1}
#bo_vc_w:after {display:block;visibility:hidden;clear:both;content:""}

View File

@ -9,14 +9,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<section id="bo_v_info">
<h2>게시물 정보</h2>
작성자
<?=$view['name']?><? if ($is_ip_view) { echo "&nbsp;($ip)"; } ?>
<span class="sound_only">작성일</span>
<?=date("y-m-d H:i", strtotime($view['wr_datetime']))?>
조회
<?=number_format($view['wr_hit'])?>회
댓글
<?=number_format($view['wr_comment'])?>건
작성자 <strong><?=$view['name']?><? if ($is_ip_view) { echo "&nbsp;($ip)"; } ?></strong><span class="sound_only">작성일</span><strong><?=date("y-m-d H:i", strtotime($view['wr_datetime']))?></strong>조회<strong><?=number_format($view['wr_hit'])?>회</strong>댓글<strong><?=number_format($view['wr_comment'])?>건</strong>
</section>
<?