쇼핑몰: 상품상세보기 이전상품 다음상품 표준화 및 스타일

This commit is contained in:
whitedot
2013-05-08 18:40:41 +09:00
parent d639a48469
commit 13b903fb79
2 changed files with 7 additions and 7 deletions

View File

@ -512,7 +512,7 @@ input.required:focus {border:1px solid #b8c9c2;background:#21272e !important;col
#sit_btn_rec {background:#888;color:#fff}
/* 상품 상세보기 - 다른 상품 보기 */
#sit_siblings {}
#sit_siblings {margin:0 0 10px;padding:10px 10px 20px;border-bottom:1px solid #e9e9e9;text-align:center}
#sit_siblings h2 {position:absolute;font-size:0;line-height:0;content:""}
/* 상품 상세보기 - 상품정보 */

View File

@ -102,9 +102,9 @@ $sql = " select it_id, it_name from {$g4['shop_item_table']}
limit 1 ";
$row = sql_fetch($sql);
if ($row['it_id']) {
$prev_title = '이전상품보기 '.$row['it_name'];
$prev_href = '<a href="./item.php?it_id='.$row['it_id'].'">';
$prev_href = '</a>';
$prev_title = '이전상품<span class="sound_only"> '.$row['it_name'].'</span>';
$prev_href = '<a href="./item.php?it_id='.$row['it_id'].'" class="btn01">';
$prev_href2 = '</a>'.PHP_EOL;
} else {
$prev_title = '';
$prev_href = '';
@ -120,9 +120,9 @@ $sql = " select it_id, it_name from {$g4['shop_item_table']}
limit 1 ";
$row = sql_fetch($sql);
if ($row['it_id']) {
$next_title = '다음 상품 '.$row['it_name'];
$next_href = '<a href="./item.php?it_id='.$row['it_id'].'">';
$next_href2 = '</a>';
$next_title = '다음 상품<span class="sound_only"> '.$row['it_name'].'</span>';
$next_href = '<a href="./item.php?it_id='.$row['it_id'].'" class="btn01">';
$next_href2 = '</a>'.PHP_EOL;
} else {
$next_title = '';
$next_href = '';