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
|
<?php Global $cinfo;
$cur_img_url = $j3_img_url."/".$sk['sk_img_path'];
if($cinfo['code']!=''){ $edit_hidden_class = "screen_out"; // 회원정보수정일때 숨김처리할거 $eidt_show_class = ""; // 회원정보수정일때 보여줄거 $page_title = "회원정보수정"; $btn1_title = "취소"; $btn2_title = "회원수정"; } else { $eidt_show_class = "screen_out"; $page_title = "회원가입"; $btn1_title = "이전단계"; $btn2_title = "회원가입"; }
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;}
.list_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;} .list_select .select {display:block;padding-right:30px;text-indent:15px;height:30px;line-height:28px;background:#fff;border:1px solid #ccc;overflow:hidden;} .list_select .depth {display:none;position:absolute;top:30px;left:0;width:198px;background-color:#fff;border:1px solid #ccc;border-top:0 none;} .list_select .depth > li a {display:block;text-indent:15px;width:100%;height:29px;line-height:29px;border-bottom:1px solid #ccc;overflow:hidden;} .list_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="list_select"> <!--하위메뉴가 없을 때, .icon_down가 나타나지 않도록 하고싶어요~ --> <a class="select"><?php echo $page_title;?></a> </div> <span class="icon_inequal"> > </span> <div class="list_select"> <!--하위메뉴가 없을 때, .icon_down가 나타나지 않도록 하고싶어요~ --> <a class="select">정보입력</a> </div> </div><!-- #sct_location -->
<h2 class="relative pb10 txt27 l_height28 align_c gray_line_b2"><?php echo $page_title;?> <ul class="absolute ab_top7_right0 txt15"> <li class="join_step float_l p0_10 gray">약관동의</li> <li class="join_step float_l p0_10 red">정보입력</li> <li class="join_step float_l p0_10 gray">가입완료</li> </ul> </h2> <!-- //상단 카테고리 내 위치 --> </div>
|