답변 4개
http://shopmini.cafe24.com/theme/redshop/css/default_shop.css" style="font-family: monospace; font-size: medium; white-space: pre-wrap;">http://shopmini.cafe24.com/theme/redshop/css/default_shop.css
이 css 파일에서 아래부분에서 빨간 부분을 수정하면 됩니다.
#menu{border-top:1px solid #ddd;height:37px;line-height:37px;background:#000}
#menu>ul{position:relative;margin:0 auto;width:1000px;text-align:right}
#menu ul li{display:inline-block;margin-left:10px;}
#menu ul li a{color:#fff}
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
head.php
상단에 위치한
메인메뉴
$sql2 = " select *
from {$g5['menu_table']}
where me_use = '1'
and length(me_code) = '4'
and substring(me_code, 1, 2) = '{$row['me_code']}'
order by me_order, me_id ";
$result2 = sql_query($sql2);
for ($k=0; $row2=sql_fetch_array($result2); $k++) {
if($k == 0)
echo '
'.PHP_EOL;?>
- 메뉴 준비 중입니다. 관리자모드 > 환경설정 > 메뉴설정에서 설정하실 수 있습니다.
$sql = " select *
from {$g5['menu_table']}
where me_use = '1'
and length(me_code) = '2'
order by me_order, me_id ";
$result = sql_query($sql, false);
$gnb_zindex = 999; // gnb_1dli z-index 값 설정용
for ($i=0; $row=sql_fetch_array($result); $i++) {
?>
}
if ($i == 0) { ?>
이걸
shop.head.php
그 위치에 작업 하셔야 겠네요
댓글을 작성하려면 로그인이 필요합니다.
영카트 shop 자체는 메뉴 출력 함수가 따로 없고
그누보드에 포함된 메뉴 함수를 갖다 써야 합니다.
따로 작업을 해야 되요
댓글을 작성하려면 로그인이 필요합니다.
theme/redshop/css/default_shop.css 73번째줄
- border-top: 1px solid #ddd;
- height: 37px;
- line-height: 37px;
- background: #000; <--추가
답변에 대한 댓글 2개
해당 테마에 맞게 고쳐보세요.
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인