1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<?php $cur_img_url = $j3_imgm_url."/".$sk['sk_img_path'];
if($id_ccode==''){ $li_width = "20%"; } else { $li_width = "25%"; }
if($skin_css!=''){ echo $skin_css; } else { ?> <style>
</style> <?php } ?> <div class='class_skin_idx_<?php echo $sk_idx;?>'> <div> <ul id="m_hd_gnb" class="width_full height26 align_c bg_gray2"> <?php if($id_ccode==''){ ?> <li class="float_l width_26" style="width:<?php echo $li_width;?>;"><a class="in_block width_full black txt12 l_height26 space_1 ellipsis hdgnb_join_class">회원가입</a></li> <li class="float_l width_26" style="width:<?php echo $li_width;?>;"><a class="in_block width_full black txt12 l_height26 space_1 ellipsis hdgnb_login_class">로그인</a></li> <?php } else { ?> <li class="float_l width_26" style="width:<?php echo $li_width;?>;"><a class="in_block width_full black txt12 l_height26 space_1 ellipsis hdgnb_logout_class">로그아웃</a></li> <?php } ?> <li class="float_l width_26" style="width:<?php echo $li_width;?>;"><a class="in_block width_full black txt12 l_height26 space_1 ellipsis hdgnb_mypage_class">마이페이지</a></li> <li class="float_l width_26" style="width:<?php echo $li_width;?>;"><a class="in_block width_full black txt12 l_height26 space_1 ellipsis hdgnb_faq_class">FAQ</a></li> <li class="float_l width_26" style="width:<?php echo $li_width;?>;"><a class="in_block width_full black txt12 l_height26 space_1 ellipsis hdgnb_11_class">1:1문의</a></li> </ul> </div> </div>
|