diff --git a/css/mobile_shop.css b/css/mobile_shop.css index 9baffcc86..e18084f52 100644 --- a/css/mobile_shop.css +++ b/css/mobile_shop.css @@ -442,7 +442,7 @@ input.required:focus {border:0;background:#21272e !important;color:#fff;line-hei /* 장바구니 */ #sod_bsk {} .sod_bsk_img {width:90px;text-align:center} -.sod_bsk_itopt {padding:3px;border:1px solid #e9e9e9;background:#f5f6fa} +.sod_bsk_itopt {margin:0 0 0.5em;padding:0.3em;border:1px solid #e9e9e9;background:#f5f6fa} #sod_bsk_dvr {padding:5px 0 12px;border-bottom:1px solid #e9e9e9} #sod_bsk_cnt {margin:0 0 10px;padding:12px 0 12px;border-bottom:1px solid #e9e9e9;background:#f5f6fa} diff --git a/mobile/shop/cartsub.inc.php b/mobile/shop/cartsub.inc.php index 08d2e1629..08b2f3efa 100644 --- a/mobile/shop/cartsub.inc.php +++ b/mobile/shop/cartsub.inc.php @@ -101,7 +101,7 @@ for ($i=0; $row=mysql_fetch_array($result); $i++) $image = get_it_image($row['it_id'].'_s', 50, 50); } - $it_name = $a1 . stripslashes($row['it_name']) . $a2 . '
'; + $it_name = $a1 . stripslashes($row['it_name']) . $a2; if ($row['it_opt1'] || $row['it_opt2'] || $row['it_opt3'] || $row['it_opt4'] || $row['it_opt5'] || $row['it_opt6']) { // 상품에 옵션이 있다면 $it_name .= '
'.print_item_options($row['it_id'], $row['it_opt1'], $row['it_opt2'], $row['it_opt3'], $row['it_opt4'], $row['it_opt5'], $row['it_opt6']).'
'; } diff --git a/shop/cartsub.inc.php b/shop/cartsub.inc.php index e7893c931..f12eab60a 100644 --- a/shop/cartsub.inc.php +++ b/shop/cartsub.inc.php @@ -101,7 +101,7 @@ for ($i=0; $row=mysql_fetch_array($result); $i++) $image = get_it_image($row['it_id'].'_s', 50, 50); } - $it_name = $a1 . stripslashes($row['it_name']) . $a2 . '
'; + $it_name = $a1 . stripslashes($row['it_name']) . $a2; if ($row['it_opt1'] || $row['it_opt2'] || $row['it_opt3'] || $row['it_opt4'] || $row['it_opt5'] || $row['it_opt6']) { // 상품에 옵션이 있다면 $it_name .= '
'.print_item_options($row['it_id'], $row['it_opt1'], $row['it_opt2'], $row['it_opt3'], $row['it_opt4'], $row['it_opt5'], $row['it_opt6']).'
'; }