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
|
<?php $cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
if($skin_css!=''){ echo $skin_css; } else { ?> <style> /* 하단 */ #foot_logo {position:absolute;right:0px;top:40px;} #hd_fnb {height:45px;border:1px solid #ddd;} #hd_fnb li a {padding:0 30px;line-height:45px;} </style> <?php }?> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <div id="hd_fnb"> <h2 class="screen_out">하단메뉴</h2> <div id="wrapper"> <ul> <li class="float_l"><a class="gray2" href='<?php echo $j3_shop_url?>/content.php?co_id=about'>ABOUT</a></li> <li class="float_l"><a class="gray2" href='<?php echo $j3_shop_url?>/content.php?co_id=guide'>GUIDE</a></li> <li class="float_l"><a class="gray2" href='<?php echo $j3_shop_url?>/content.php?co_id=privacy'>개인정보취급방침</a></li> <li class="float_l"><a class="gray2" href='<?php echo $j3_shop_url?>/content.php?co_id=provision'>서비스 이용약관</a></li> </ul> </div> </div> <div style="padding-top:10px;"> <div id="wrapper" class="class_skin_idx_16"> <h1 id="foot_logo"><a href='<?php echo $j3_url;?>'><img src="<?php echo $j3_data_url;?>/ico/logo_pc_2" alt="<?php echo $config['shop_title']; ?>"></a></h1> <p class="mb5"> <em class="mr5 bold gray">회사명</em><span class="mr20 gray"><?php echo $configshop['comp_name']?></span> <em class="mr5 bold gray">주소</em><span class="mr20 gray"><?php echo $configshop['addr_m']?></span> </p> <p class="mb5"> <em class="mr5 bold gray">사업자등록번호</em><span class="mr20 gray"><?php echo $configshop['comp_sn']?></span> <em class="mr5 bold gray">대표자</em><span class="mr20 gray"><?php echo $configshop['ceo_name']?></span> <em class="mr5 bold gray">전화</em><span class="mr20 gray"><?php echo $configshop['telno1']?></span> <em class="mr5 bold gray">팩스</em><span class="mr20 gray"><?php echo $configshop['faxno']?></span> </p> <p class="mb5"> <em class="mr5 bold gray">통신판매업신고번호</em><span class="mr20 gray"><?php echo $configshop['tongsin_no']?></span> <em class="mr5 bold gray">개인정보관리책임자</em><span class="mr20 gray"><?php echo $configshop['admin_info_name']?></span> <em class="mr5 bold gray">e-mail</em><span class="mr20 gray"><?php echo $configshop['admin_info_email']?></span> </p> <p class="gray2 pver30">Copyright ⓒ <?php echo date("Y")?> <?php echo $config['shop_title']?>. All Rights Reserved.</p> </div> </div> </div> <script> $(function(){ $( "#foot_top_btn" ).click(function() { $('html,body').animate({scrollTop: 0}, 1000); }); }); </script>
|