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
73
74
75
76
77
78
|
<?php Global $list_array, $total_page, $list_num, $total_count, $faq_cate_array, $faq_idx;
$cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
if($skin_css!=''){ echo $skin_css; } else { ?> <!-- 상단 카테고리 내 위치 --> <style>
</style> <?php }?> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <!--탭메뉴--> <div class="mb10 m0_10"> <ul id="tabs"><li class="in_block mr_1 height30 align_c gray_line <?php if($faq_idx==''){?>bg_white<?php } else {?>bg_gray<?php }?>" style="width:33%;" rel="tab1" value='all'><span class="txt13 l_height30">전체보기</span></li><?php for($i=0;$i<count($faq_cate_array);$i++){ $info = $faq_cate_array[$i]; if($i>=2){ $add_class = "mt_1"; } ?><li class="in_block mr_1 height30 align_c gray_line <?php echo $add_class;?> <?php if($faq_idx==$info['idx']){?>bg_white<?php } else {?>bg_gray<?php }?>" style="width:33%;" rel="tab1" value='<?php echo $info['idx'];?>'><span class="txt13 l_height30"><?php echo $info['faq_cate'];?></span></li><?php } ?> </ul> </div> <!--//탭메뉴-->
<!--게시판 --> <div class="mb10 m0_10 black_line_t"> <?php $num = $total_count - ($page - 1) * $list_num; for($i=0;$i<count($list_array);$i++){ $info = $list_array[$i]; if($info['idx']!=''){ ?> <dl> <dt class="faq_title width_full txt13 l_height35 ellipsis gray_line_b pointer"> <em class="in_block pl10 custom2 txt14 bold"><?php echo $info['faq_cate'];?></em> <a><span class="in_block"><?php echo $info['faq_subject'];?></span></a> </dt> <dd class="faq_cont p10 gray3 txt13 align_j gray_line_b bg_gray"><?php echo $info['faq_content'];?></dd> </dl> <?php } $num--; } ?> <!-- <dl> <dt class="faq_title width_full txt13 l_height35 ellipsis gray_line_b pointer"> <em class="in_block pl10 custom2 txt14 bold">주문/결제</em> <a><span class="in_block">결제 방식은 어떻게 되나요?</span></a> </dt> <dd class="faq_cont p10 gray3 txt13 align_j gray_line_b bg_gray"> 내용2 </dd> </dl> <dl> <dt class="faq_title width_full txt13 l_height35 ellipsis gray_line_b pointer"> <em class="in_block pl10 custom2 txt14 bold">취소/환불</em> <a><span class="in_block">주문을 취소하게 되면 환불 처리는 얼마나 걸리나요???????</span></a> </dt> <dd class="faq_cont p10 gray3 txt13 align_j gray_line_b bg_gray"> 내용3 </dd> </dl> <dl> <dt class="faq_title width_full txt13 l_height35 ellipsis gray_line_b pointer"> <em class="in_block pl10 custom2 txt14 bold">회원정보</em> <a><span class="in_block">회원 아이디와 비밀번호가 생각이 나지 않아요.</span></a> </dt> <dd class="faq_cont p10 gray3 txt13 align_j gray_line_b bg_gray"> 내용4 </dd> </dl>--> </div> <!-- //게시판--> </div>
|