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
|
<?php $cur_img_url = $j3_imgm_url."/".$sk['sk_img_path'];
$cate_array = cate_lv2_list_get('001001');
if($skin_css!=''){ echo $skin_css; } else { ?> <style> .category_section ul li { width:111px; } </style> <?php } ?> <div class="class_skin_idx_<?php echo $sk_idx;?>"> <!-- 상품주문 --> <section class="block pb10 bg_gray over_h category_section width_full" style='top:0px;'> <h2 class="screen_out">분류 카테고리</h2> <ul class="p10 float_c"> <?php foreach($cate_array as $key=>$cate){ ?> <li class="float_l mr1 mb1 height37 align_c l_height32 bg_white ellipsis"><a class="block mt3 gray3 txt13 bold space_1" href="<?php echo "./list.php?code=".$cate['code2'];?>"><?php echo $cate['name'];?></a></li> <?php } ?> </ul> </section> <!-- //상품주문 --> </div> <script> $(function(){ section_list_left_align(".class_skin_idx_<?php echo $sk_idx;?> .category_section","w"); }); </script>
|