사용자: 리디자인 2, snb 아이콘 및 선색 스타일 변경
@ -43,9 +43,14 @@ a:active {color:#000;text-decoration:underline}
|
||||
#schall legend {width:0;height:0;overflow:hidden}
|
||||
#schall_stx {padding-left:5px;width:156px;height:27px;border:1px solid #ccc;border-right:0;border-top-left-radius:10px;border-bottom-left-radius:10px;background:#fff;line-height:2em !important;line-height:2em}
|
||||
|
||||
#snb {position:absolute;top:10px;right:0;zoom:1}
|
||||
#snb {position:absolute;top:20px;right:0;zoom:1}
|
||||
#snb:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#snb li {float:left;margin-left:7px}
|
||||
#snb li {float:left;margin-left:15px}
|
||||
#snb a {display:block;padding:5px}
|
||||
#snb a:focus,
|
||||
#snb a:hover,
|
||||
#snb a:active {text-decoration:none}
|
||||
/*
|
||||
#snb a {display:block;position:relative;width:50px;height:50px;background:url('../img/snb_icon.jpg');border:1px solid #cfded8;border-radius:10px;text-decoration:none}
|
||||
#snb #snb_login {background-position:0 0}
|
||||
#snb #snb_join {background-position:-50px 0}
|
||||
@ -54,6 +59,7 @@ a:active {color:#000;text-decoration:underline}
|
||||
#snb #snb_modify {background-position:-200px 0}
|
||||
#snb #snb_cnt {background-position:-250px 0}
|
||||
#snb #snb_new {background-position:-300px 0}
|
||||
*/
|
||||
#snb span {position:absolute;top:35px;left:0;width:50px;font-size:0.95em;letter-spacing:-0.1em;text-align:center}
|
||||
|
||||
/* 중간 레이아웃 */
|
||||
|
||||
53
head.php
@ -62,15 +62,52 @@ include_once(G4_LIB_PATH.'/popular.lib.php');
|
||||
|
||||
<ul id="snb">
|
||||
<? if ($is_member) { ?>
|
||||
<? if ($is_admin) { ?><li><a href="<?=G4_ADMIN_URL?>" id="snb_adm"><span>관리자</span></a></li><? } ?>
|
||||
<li><a href="<?=G4_BBS_URL?>/member_confirm.php?url=<?=G4_BBS_URL?>/register_form.php" id="snb_modify"><span>내정보</span></a></li>
|
||||
<li><a href="<?=G4_BBS_URL?>/logout.php" id="snb_logout"><span>로그아웃</span></a></li>
|
||||
<? } else { ?>
|
||||
<li><a href="<?=G4_BBS_URL?>/register.php" id="snb_join"><span>회원가입</span></a></li>
|
||||
<li><a href="<?=G4_BBS_URL?>/login.php" id="snb_login"><span>로그인</span></a></li>
|
||||
<? if ($is_admin) { ?>
|
||||
<li>
|
||||
<a href="<?=G4_ADMIN_URL?>" id="snb_adm">
|
||||
<img src="<?=G4_URL?>/img/snb_admin.jpg" alt="">
|
||||
관리자
|
||||
</a>
|
||||
</li>
|
||||
<? } ?>
|
||||
<li><a href="<?=G4_BBS_URL?>/current_connect.php" id="snb_cnt"><span><?=connect(); // 현재 접속자수 ?></span></a></li>
|
||||
<li><a href="<?=G4_BBS_URL?>/new.php" id="snb_new"><span>새글</span></a></li>
|
||||
<li>
|
||||
<a href="<?=G4_BBS_URL?>/member_confirm.php?url=<?=G4_BBS_URL?>/register_form.php" id="snb_modify">
|
||||
<img src="<?=G4_URL?>/img/snb_modify.jpg" alt="">
|
||||
내 정보
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?=G4_BBS_URL?>/logout.php" id="snb_logout">
|
||||
<img src="<?=G4_URL?>/img/snb_logout.jpg" alt="">
|
||||
로그아웃
|
||||
</a>
|
||||
</li>
|
||||
<? } else { ?>
|
||||
<li>
|
||||
<a href="<?=G4_BBS_URL?>/register.php" id="snb_join">
|
||||
<img src="<?=G4_URL?>/img/snb_join.jpg" alt="">
|
||||
회원가입
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?=G4_BBS_URL?>/login.php" id="snb_login">
|
||||
<img src="<?=G4_URL?>/img/snb_login.jpg" alt="">
|
||||
로그인
|
||||
</a>
|
||||
</li>
|
||||
<? } ?>
|
||||
<li>
|
||||
<a href="<?=G4_BBS_URL?>/current_connect.php" id="snb_cnt">
|
||||
<img src="<?=G4_URL?>/img/snb_cnt.jpg" alt="">
|
||||
현재접속자 <?=connect(); // 현재 접속자수 ?>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="<?=G4_BBS_URL?>/new.php" id="snb_new">
|
||||
<img src="<?=G4_URL?>/img/snb_new.jpg" alt="">
|
||||
새글
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
BIN
img/snb_admin.jpg
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
img/snb_cnt.jpg
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
img/snb_icon.jpg
|
Before Width: | Height: | Size: 7.2 KiB |
BIN
img/snb_join.jpg
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
img/snb_login.jpg
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
img/snb_logout.jpg
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
img/snb_modify.jpg
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
img/snb_new.jpg
Normal file
|
After Width: | Height: | Size: 944 B |