사용자: 최근게시물(new)스킨 스타일
This commit is contained in:
@ -45,7 +45,7 @@ hr {display:none}
|
||||
/* 중간 레이아웃 */
|
||||
#wrapper {margin:0 auto;padding-bottom:30px;width:980px;zoom:1}
|
||||
#wrapper:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#wrapper_title {font-size:1.2em}
|
||||
#wrapper_title {margin-bottom:20px;font-size:1.2em}
|
||||
#lnb {float:right;width:220px}
|
||||
#container {float:left;width:730px;zoom:1}
|
||||
#container:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
@ -100,7 +100,8 @@ tfoot td {border-color:#c9c9c9;background:#f9f9f5;font-weight:bold;text-align:ce
|
||||
caption {padding:0 0 10px;text-align:left}
|
||||
th {padding:12px 0 8px;border-top:3px solid #484848;border-bottom:1px solid #a9a9a9}
|
||||
th input {vertical-align:top} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
|
||||
td {padding:8px 5px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9}
|
||||
td {padding:8px 5px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9;word-break:break-all}
|
||||
table a {color:#000;text-decoration:none}
|
||||
.empty_table {padding:85px 0;text-align:center}
|
||||
|
||||
/* 폼 테이블 */
|
||||
@ -125,7 +126,7 @@ td {padding:8px 5px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9
|
||||
.td_board {width:120px;text-align:center}
|
||||
.td_num {width:50px;text-align:center}
|
||||
.td_bignum {width:80px;text-align:center}
|
||||
.td_mb_id {width:120px;text-align:center}
|
||||
.td_mb_id {width:100px;text-align:center}
|
||||
.td_nick {width:100px;text-align:center}
|
||||
.td_name {width:100px;text-align:left}
|
||||
.td_name div {position:relative}
|
||||
@ -174,7 +175,7 @@ td {padding:8px 5px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9
|
||||
#poll li {padding:3px 0}
|
||||
#poll footer {padding:0 14px 14px;text-align:right}
|
||||
|
||||
/* 최근게시물 스킨 */
|
||||
/* 최근게시물 스킨 (latest) */
|
||||
.lt {float:left;margin-bottom:20px;padding:20px;width:314px;height:149px;border-right:1px solid #ececec;border-bottom:1px solid #ececec;background:#fff}
|
||||
.lt ul {margin:0;padding:0;list-style:none}
|
||||
.lt li {padding:3px 0}
|
||||
@ -183,6 +184,10 @@ td {padding:8px 5px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9
|
||||
.lt_more {text-align:center}
|
||||
.lt_more a {display:block}
|
||||
|
||||
/* 최근게시물 스킨 (new) */
|
||||
#new_sch {margin-bottom:10px;text-align:right}
|
||||
#new_sch legend {width:0;height:0;overflow:hidden}
|
||||
|
||||
/* 전체검색결과 스킨 */
|
||||
#sch_result_detail {margin:0;padding:15px 0;border:0;text-align:right}
|
||||
#sch_result {padding:10px 0 0 0;border-top:1px solid #ddd;background:url('../img/sch_result_bg.jpg') repeat-y}
|
||||
|
||||
@ -3,17 +3,18 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
?>
|
||||
|
||||
<!-- 검색 -->
|
||||
<form name="fnew" method="get">
|
||||
<fieldset id="new_search">
|
||||
<fieldset id="new_sch">
|
||||
<legend>상세검색</legend>
|
||||
<form name="fnew" method="get">
|
||||
<?=$group_select?>
|
||||
<select id="view" name="view" onchange="select_change()" title="검색종류">
|
||||
<option value="">전체게시물
|
||||
<option value="w">원글만
|
||||
<option value="c">코멘트만
|
||||
</select>
|
||||
<input type="text" id="mb_id" name="mb_id" class="fieldset_input" value="<?=$mb_id?>" title="검색어">
|
||||
<input type="submit" class="fieldset_submit" value="검색">
|
||||
<input type="text" id="mb_id" name="mb_id" class="fs_input" value="<?=$mb_id?>" title="검색어">
|
||||
<input type="submit" class="fs_submit" value="검색">
|
||||
</form>
|
||||
<script>
|
||||
function select_change()
|
||||
{
|
||||
@ -23,7 +24,6 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
document.getElementById("view").value = "<?=$view?>";
|
||||
</script>
|
||||
</fieldset>
|
||||
</form>
|
||||
<!-- 검색 끝 -->
|
||||
|
||||
<!-- 제목 시작 -->
|
||||
@ -50,7 +50,7 @@ for ($i=0; $i<count($list); $i++)
|
||||
<td class="td_board"><a href="./board.php?bo_table=<?=$list[$i]['bo_table']?>"><?=$bo_subject?></a></td>
|
||||
<td><a href="<?=$list[$i]['href']?>"><?=$list[$i]['comment']?><?=$wr_subject?></a></td>
|
||||
<td class="td_name"><div><?=$list[$i]['name']?></div></td>
|
||||
<td class="td_datetime"><?=$list[$i]['datetime2']?></td>
|
||||
<td class="td_date"><?=$list[$i]['datetime2']?></td>
|
||||
</tr>
|
||||
<? } ?>
|
||||
|
||||
@ -60,6 +60,4 @@ for ($i=0; $i<count($list); $i++)
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="pg">
|
||||
<?=$write_pages?>
|
||||
</div>
|
||||
<?=$write_pages?>
|
||||
|
||||
2
tail.php
2
tail.php
@ -8,7 +8,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
<footer id="ft">
|
||||
<h1><?=$config['cf_title']?> 정보</h1>
|
||||
<?=popular('neo'); // 인기검색어 ?>
|
||||
<?=popular('neo',100); // 인기검색어 ?>
|
||||
<?=visit("neo"); // 방문자수 ?>
|
||||
<div id="ft_catch"><img src="<?=$g4['path']?>/img/ft_catch.jpg" alt="Sharing All Possibilities"></div>
|
||||
<div id="ft_copy">
|
||||
|
||||
Reference in New Issue
Block a user