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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php $cur_img_url = $j3_img_url."/".$sk['sk_img_path']; $menu_array = menu_get_pc();
if($skin_css!=''){ echo $skin_css; } else { ?> <style> /* 메인 : 상점메뉴 */ #hd_lnb {height:40px;background:#39404a;z-index:5;} /*#all_menu_box li:first-child a{padding:0;}*/ #all_menu_box { padding-left:200px; } #all_menu_box a {padding:0 30px;line-height: 38px;position: relative;display: block;} #all_menu_box li a::before {content: '';display: block;position: absolute;top: 12px;left: 0;width: 2px;height: 16px;background: #a5a5a5;} #all_menu_box li:first-child a::before{content: '';display: block;position: absolute;top: 12px;left: 0;width: 1px;height: 12px;background:none;} .txt_lnb_white {color:#fff;font-size:1.25em;line-height:42px;font-weight:600;}
/* 검색어(우측정렬) */ #hd_sch{position: absolute;top: 5px;right: 65px;width: 208px;height: 30px;border: 1px solid #e6e6e6;background:#fff;font-size: 0;} #hd_sch #sch_str{display: inline-block;width: 167px;padding-left: 10px;border: none;height: 28px;font-size: 12px;} #hd_sch #sch_btn{margin-top:-10px;}
/* 장바구니(우측정렬) */ #hd_cart{display: block;position: absolute;top: 0;right: 0;width: 49px;height: 37px;background: url("<?php echo $cur_img_url;?>/cart_num.png") no-repeat 7px 5px;font-size: 0;} .hd_cart_num{position: absolute;bottom: 0px;right: 3px;width: 18px;height: 18px;font-weight:bold;background-color: #ff6934;border-radius: 50%;color: #fff;text-align: center;padding-top:1px;font-size: 12px;} #hd_cart_link{position: absolute;width: 49px;height: 37px;} </style> <?php }?> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <div id="hd_lnb"> <div class="wrapper"> <ul id="all_menu_box"> <!--<li class="float_l"><a href="#" class="txt_lnb"><img src="./img/all_cate_btn.png" alt="전체카테고리"></a></li>--> <?php foreach($menu_array as $key=>$info){ ?> <li class="float_l"><a href="<?php echo $info['me_link']?>" target='<?php echo $info['me_target']?>' class="txt_lnb_white"><?php echo $info['me_name']?></a></li> <?php } ?> <!--<li class="float_l"><a href="#" class="txt_lnb_white">베스트100</a></li> <li class="float_l"><a href="#" class="txt_lnb_white">신상품</a></li> <li class="float_l"><a href="#" class="txt_lnb_white">커피</a></li> <li class="float_l"><a href="#" class="txt_lnb_white">원두</a></li> <li class="float_l"><a href="#" class="txt_lnb_white">베이커리</a></li>--> </ul> <!--검색어(우측정렬)--> <div id="hd_sch"> <form name='total_search_form' id='total_search_form' method='get' action='<?php echo "{$j3_shop_url}/search.php";?>' onsubmit='return false;'> <input type="text" name='skey' id="sch_str" placeholder="검색어를 입력하세요." requied> <a><input type="image" id="sch_submit" src="<?php echo $cur_img_url;?>/search_btn.png" id="sch_btn" alt="검색버튼"></a> </form> </div> <!--검색어(장바구니)--> <div id="hd_cart"> <a class='hdgnb_cart_class' id="hd_cart_link">장바구니<!--<span class="hd_cart_num">3</span>--></a> </div> </div><!--wrapper--> </div><!--hd_lnb--> </div>
|