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
|
<?php $cur_img_url = $j3_imgm_url."/".$sk['sk_img_path'];
$menu_array = menu_get_mobile(); $mn_cnt = count($menu_array);
if($skin_css!=''){ echo $skin_css; } else { ?> <style> .category_section ul li { width:111px; } .class_skin_idx_123 .category_section{display:none;}/*메인에 탭 고정메뉴 제거*/ </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"> <!--<li class="float_l mr1 mb1 height37 align_c l_height32 bg_white ellipsis" ><a class="block mt3 custom1 txt13 bold space_1" href='<?php echo "{$j3_shop_url}/list.php?code=all";?>'>전체</a></li> <li class="float_l mr1 mb1 height37 align_c l_height32 bg_white ellipsis" ><a class="block mt3 custom1 txt13 bold space_1" href='<?php echo "{$j3_shop_url}/list.php?code={$p_catecode}";?>'>전체</a></li>--> <li class="float_l mr1 mb1 height37 align_c l_height32 bg_white ellipsis" ><a class="block mt3 gray3 txt13 bold space_1" href='./content.php?co_id=company'>회사소개</a></li> <li class="float_l mr1 mb1 height37 align_c l_height32 bg_white ellipsis" ><a class="block mt3 gray3 txt13 bold space_1" href='./content.php?co_id=brand'>브랜드소개</a></li> <li class="float_l mr1 mb1 height37 align_c l_height32 bg_white ellipsis" ><a class="block mt3 gray3 txt13 bold space_1" href='./content.php?co_id=map'>찾아오시는 길</a></li> </ul> </section> </div> <script> $(function(){ section_list_left_align(".class_skin_idx_<?php echo $sk_idx;?> .category_section","w"); }); </script>
|