테스트 사이트 - 개발 중인 베타 버전입니다

상품리스트에 줄마다 있는 라인을 없애고 싶습니다.

· 11년 전 · 11 · 2
질문드린 테두리는 알려주신 방법대로 해결이 잘 되었습니다.
두가지 질문중에 
상품리스트 줄마다 있는 회색경계선? 인?  (이미지 첨부합니다.)
을 없애고 싶어요
55256-47ba762054f40266532b39098709a7b4[1].jpg
 

댓글 작성

댓글을 작성하시려면 로그인이 필요합니다.

로그인하기

댓글 2개

shop/list.skin.10.php 를 아래와 같이 수정해 드렸습니다.

#echo "<tr><td colspan='$list_mod' background='$g4[shop_img_path]/line_h.gif' height=1></td></tr>\n\n";
...
<table width=98% cellpadding=2 cellspacing=0 style='border:1px solid #dfdfdf; margin:5px;'>

이 부분이 수정 되었습니다.

<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
?>

<table width=100% cellpadding=2 cellspacing=0>
<tr>
<?
for ($i=0; $row=sql_fetch_array($result); $i++)
{
if ( ($i>0) && (($i%$list_mod)==0) )
{
echo "</tr>\n\n";
#echo "<tr><td colspan='$list_mod' background='$g4[shop_img_path]/line_h.gif' height=1></td></tr>\n\n";
echo "<tr>\n";
}

echo "
<td width='{$td_width}%' align=center valign=top>
<br>
<table width=98% cellpadding=2 cellspacing=0 style='border:1px solid #dfdfdf; margin:5px;'>
<tr><td align=center>".get_it_image($row[it_id]."_s", $img_width , $img_height, $row[it_id])."</td></tr>
<tr><td align=center>".it_name_icon($row)."</td></tr>";

if ($row[it_cust_amount] && !$row[it_gallery])
echo "<tr><td align=center><strike>".display_amount($row[it_cust_amount])."</strike></td></tr>";

echo "<tr><td align=center>";

if (!$row[it_gallery])
echo "<span class=amount>".display_amount(get_amount($row), $row[it_tel_inq])."</span>";

echo "</td></tr></table></td>";
}

// 나머지 td 를 채운다.
if (($cnt = $i%$list_mod) != 0)
for ($k=$cnt; $k<$list_mod; $k++)
echo " <td>&nbsp;</td>\n";
?>
</tr>
</table>
잘 되요 감사합니다^^

게시글 목록

번호 제목
56073
56067
56065
56060
56058
56055
56051
56048
56044
56043
56042
56039
56035
56032
56030
56028
56025
56018
56012
56010