리스트 스킨의 제목 앞에 표시되는 쩜 없애고 싶어요.

리스트 스킨의 제목 앞에 표시되는 쩜 없애고 싶어요.

QA

리스트 스킨의 제목 앞에 표시되는 쩜 없애고 싶어요.

답변 1

본문


보니까 크롬은 큰 점 없이 이쁘게 나오는데 익스플로러에서는 큰 점이 제목 앞에 표시되더군요.
이걸 어떻게 없앨 수 있을까요?
답변 부탁드립니다.ㅠㅠ

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

<style type="text/css">
.lastest {_display:inline-block; width:100%; overflow:hidden;}
.lastest .lastest_box {_display:inline-block; position:relative; overflow:hidden;}
.lastest img{border:0}
.lastest .ntitle{padding-left:7px;}
.lastest .more_btn{padding:0px;}
.lastest .lastest_box .more_btn {position:absolute; top:0px; right:5px;}
.lastest ul {list-style-image:none; padding:0 5px 0 5px;}
.lastest li {background:url(<?=$latest_skin_path?>/img/ball.gif) no-repeat 0 50%; padding:2px 0 2px 10px; font-size:12px;}
.lastest a:link {color: #888; text-decoration: none}
.lastest a:visited {color: #888; text-decoration: none}
.lastest a:active {color: #888; text-decoration: none}
.lastest a:hover { color: #888; text-decoration: none}
</style>

<div class="lastest">
<div class="lastest_box">
<span class="ntitle"><img src='<?=$latest_skin_path?>/img/title.gif' alt="title" /></span>
<span class="more_btn"><a href='<?=$g4[bbs_path]?>/board.php?bo_table=<?=$bo_table?>'><img src='<?=$latest_skin_path?>/img/more.gif' alt="" /></a></span>
</div>
<ul>
<? for ($i=0; $i<count($list); $i++) { ?>
<li>
            <?
            echo $list[$i]['icon_reply'] . " ";
            echo "<a href='{$list[$i]['href']}'>";
            if ($list[$i]['is_notice'])
                echo "{$list[$i]['subject']}";
            else
                echo "{$list[$i]['subject']}";
            echo "</a>";

            if ($list[$i]['comment_cnt']) 
                echo " <a href=\"{$list[$i]['comment_href']}\">{$list[$i]['comment_cnt']}</a>";

           echo " " . $list[$i]['icon_new'];
            ?></li>
<? } ?>
<? if (count($list) == 0) { ?><li>게시물이 없습니다.</li><? } ?>
</ul>
</div>

이 질문에 댓글 쓰기 :

답변 1

답변을 작성하시기 전에 로그인 해주세요.
QA 내용 검색
질문등록
전체 125,873
© SIRSOFT
현재 페이지 제일 처음으로