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
62
63
64
65
66
67
68
69
70
71
72
|
<?php Global $customer_menu_list;
$cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
if($skin_css!=''){ echo $skin_css; } else { ?> <!-- 상단 카테고리 내 위치 --> <style> #sct_location {display:block;height:32px;z-index:9999;} #sct_location > a:first-child {line-height:30px;} #sct_location > a {float:left;height:30px;line-height:30px;} #sct_location > span {float:left;width:8px;height:16px;margin:7px 16px 0;}
.cate_select {position:relative;float:left;width:198px;height:30px;} .icon_inequal {display:block;float:right;width:16px;height:16px;text-indent:-9999px;background:url('<?php echo $cur_img_url;?>/location.png') -4px -50px no-repeat;overflow:hidden;zoom:1} .icon_down {position:absolute;top:50%;right:15px;display:block;width:16px;height:10px;margin-top:-5px;overflow:hidden;zoom:1;vertical-align:top;background:url('<?php echo $cur_img_url;?>/location.png') 0 -94px no-repeat;} .cate_select .select {display:block;padding-right:30px;text-indent:15px;height:30px;line-height:28px;background:#fff;border:1px solid #ccc;overflow:hidden;} .cate_select .depth {display:none;position:absolute;top:30px;left:0;width:198px;background-color:#fff;border:1px solid #ccc;border-top:0 none;} .cate_select .depth > li a {display:block;text-indent:15px;width:100%;height:29px;line-height:29px;border-bottom:1px solid #ccc;overflow:hidden;} .cate_select .depth > li a:hover {background:#fafafa;}
#sct_search {position:absolute;right:0px;top:0px;} #sct_search input[type=text] {padding-left:7px;width:188px;height:30px;border:1px solid #ccc;} #sct_search input[type=image] {display:block;float:right;padding:4px 5px;text-indent:-9999px;border:1px solid #ccc;border-left:0px none;overflow:hidden;zoom:1;}/ </style> <?php }?>
<div class="class_skin_idx_<?php echo $sk_idx;?>"> <div id="sct_location" class="mt20 mb40"> <a href="<?php echo $j3_shop_url;?>">홈</a> <span class="icon_inequal"> > </span> <div class="cate_select"> <a class="select">고객센터</a> </div> <span class="icon_inequal"> > </span> <div class="cate_select"> <a class="select">자주하는질문<span class="icon_down"></span></a> <ul class="depth"> <?php foreach($customer_menu_list as $key=>$val){ ?> <li><a href='<?php echo $j3_shop_url."/".$key;?>'><?php echo $val;?></a></li> <?php } ?> </ul> </div> </div><!-- #sct_location -->
<h2 class="mb30 txt32 l_height30 align_c bold">자주하는질문</h2> <!--글검색--> <div class="gray_line2"> <div class="p20_0 align_c gray_line6 v_align_m"> <label class="screen_out">글검색</label> <input type="text" name='faq_search' id='faq_search' value='<?php echo $faq_search;?>' placeholder="검색할 단어를 입력해 주세요." class="pl60 box500_50 custom_line23" style="background:url('<?php echo $cur_img_url;?>/icon_faq.png') center left no-repeat"><input type="submit" value="검색" class="box120_50 white txt14 bold line0 bg_custom2 pointer faq_search_class"> </div> </div> </div> <script> $(function(){ $(".cate_select").mouseenter(function(){ // 카테고리 셀렉트 처리 $(this).children("ul").slideDown(); }); $(".cate_select").mouseleave(function(){ // 카테고리 셀렉트 처리 $(this).children("ul").slideUp(); }); }); </script> <!-- //상단 카테고리 내 위치 -->
|