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
|
<?php $cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
if($skin_css!=''){ echo $skin_css; } else { ?> <style> /* 하단 */ #hd_fnb{background:#2f2f2f;line-height: 50px;} #foot_logo {position:absolute;right:0px;top:40px;} #hd_fnb ul li a {padding-left: 5px;padding-right: 35px;} #foot_top_btn {width:50px;height:50px;background:#3c3c3c;display:block;text-align:center;cursor:pointer;} </style> <style> #hd_fnd_sub{background:#3c3c3c;height:150px;} #foot_logo{top:20px;} .foot_txt_con:after { content:":"; margin:0 5px;} .foot_txt_con1:after { content:"/"; margin:0 5px;} </style> <?php }?> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <div id="hd_fnb" class="height50"> <div id="w1000"> <h2 class="screen_out">하단메뉴</h2> <ul> <li class="float_l"><a class="white bold" href='<?php echo $j3_shop_url?>/content.php?co_id=about'>ABOUT</a></li> <li class="float_l"><a class="white bold" href='<?php echo $j3_shop_url?>/content.php?co_id=guide'>GUIDE</a></li> <li class="float_l"><a class="white bold" href='<?php echo $j3_shop_url?>/content.php?co_id=privacy'>개인정보취급방침</a></li> <li class="float_l"><a class="white bold" href='<?php echo $j3_shop_url?>/content.php?co_id=provision'>서비스 이용약관</a></li> </ul> <!--위로가기버튼--> <div class="float_r"><a id="foot_top_btn"><img src="<?php echo $cur_img_url;?>/top_btn.png"></a></div> </div> </div> <div id="hd_fnd_sub"> <div id="w1000"> <h1 id="foot_logo"><a href="<?php echo $j3_url;?>"><img src="<?php echo $j3_data_url;?>/ico/logo_pc_2" alt="하단로고"></a></h1> <p class="white txt14 pt15"> <?php echo $configshop['comp_name'];?> </p> <p class="mb5 txt13 pt15 white"> <em class="mr5 bold gray3 normal foot_txt_con">대표</em><span class="normal gray3 foot_txt_con1"><?php echo $configshop['ceo_name']?></span> <em class="mr5 bold gray3 normal foot_txt_con">사업자등록번호</em><span class="normal gray3 foot_txt_con1"><?php echo $configshop['comp_sn']?></span> <span class="normal gray3 foot_txt_con1"><?php echo $configshop['addr_m']?></span> <em class="mr5 normal gray3 foot_txt_con normal">전화</em><span class="normal gray3 foot_txt_con1"><?php echo $configshop['telno1']?></span> <em class="mr5 normal gray3 foot_txt_con normal">이메일</em><span class="normal gray3 foot_txt_con1"><?php echo $configshop['admin_info_email']?></span> </p> <p class="txt13 gray3">Copyright ⓒ <?php echo date("Y")?> <?php echo $config['shop_title']?>. All Rights Reserved.</p> <p class="pt25"> <span class="gray3 normal" style="font-weight: 400;color:#dadada;margin:0;">[개인정보관리책임자] <?php echo $configshop['admin_info_name']?></span> <span class="gray3 normal" style="font-weight: 400;color:#dadada;margin:0;">[통신판매업신고번호] <?php echo $configshop['tongsin_no']?></span> </p> </div> </div> </div> <script> $(function(){ $( "#foot_top_btn" ).click(function() { $('html,body').animate({scrollTop: 0}, 1000); }); }); </script>
|