게시판검색시 리스트게시판깨짐현상
본문
여기게시판을 보시면 기본 list 에서는 적상으로 보이나
검색해서 검색내용을 볼때는 이미지쪽 틀이 깨져서 글자와함께보입니다 ㅠ어느부분 코딩을 수정해야할까요..?
<div class="col-md-3 col-xs-12 mb30">
<?php if ($is_checkbox) { ?>
<label for="chk_wr_id_<?php echo $i ?>" class="sound_only"><?php echo $list[$i]['subject'] ?></label>
<input type="checkbox" name="chk_wr_id[]" value="<?php echo $list[$i]['wr_id'] ?>" id="chk_wr_id_<?php echo $i ?>">
<?php } ?>
<div class="thumbnail ">
<?php
if ($list[$i]['is_notice']) { // 공지사항 ?>
<strong style="width:<?php echo $board['bo_gallery_width'] ?>px;height:<?php echo $board['bo_gallery_height'] ?>px">공지</strong>
<?php } else {
$thumb = get_list_thumbnail($board['bo_table'], $list[$i]['wr_id'], $board['bo_gallery_width'], $board['bo_gallery_height']);
if($thumb['src']) {
$img_content = '<img src="'.$thumb['src'].'" class="image" alt="'.$thumb['alt'].'" data-image="'.$thumb['src'].'" data-description="'.$list[$i]['subject'].'" width="'.$board['bo_gallery_width'].'" height="'.$board['bo_gallery_height'].'">';
} else {
$img_content = '<span style="width:'.$board['bo_gallery_width'].'px;height:'.$board['bo_gallery_height'].'px">no image</span>';
}
echo '<a href="'.$thumb['ori'].'" title="'.$list[$i]['subject'].'"> ';
echo $img_content;
echo '</a>';
}
?>
<div class="caption">
<?php
if ($is_category && $list[$i]['ca_name']) {
?>
<!-- <a href="<?php echo $list[$i]['ca_name_href'] ?>" class="bo_cate_link"><?php echo $list[$i]['ca_name'] ?></a>-->
<?php } ?>
<h3><?php echo $list[$i]['subject'] ?> <?php
// if ($list[$i]['link']['count']) { echo '['.$list[$i]['link']['count']}.']'; }
// if ($list[$i]['file']['count']) { echo '<'.$list[$i]['file']['count'].'>'; }
//if (isset($list[$i]['icon_new'])) echo $list[$i]['icon_new'];
//if (isset($list[$i]['icon_hot'])) echo $list[$i]['icon_hot'];
//if (isset($list[$i]['icon_file'])) echo $list[$i]['icon_file'];
//if (isset($list[$i]['icon_link'])) echo $list[$i]['icon_link'];
//if (isset($list[$i]['icon_secret'])) echo $list[$i]['icon_secret'];
?></h3>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
답변 1
이미지 title 이 아래처럼 들어가 있습니다.
title="목재외피의 변형이 방지되는 목재형 <b class="sch_word">디자인</b>난간"
<b class="sch_word">디자인</b> 이 부분이 제목중 검색한 단어를 진하게 표시하는 부분인데..
쌍따옴표가 들어가서 문제가 되는 겁니다.
title 부분을 삭제하시던지 해당 부분을 title="<?php echo $list[$i]['wr_subject'];?>" 등으로 바꿔주세요.