옆으로 흐르는 갤러리 적용시 tail.php 강제로 밀리는 현상 > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

옆으로 흐르는 갤러리 적용시 tail.php 강제로 밀리는 현상 정보

옆으로 흐르는 갤러리 적용시 tail.php 강제로 밀리는 현상

본문

http://sir.co.kr/bbs/board.php?bo_table=g4_skin&wr_id=2881&sca=&sfl=wr_subject%7C%7Cwr_content&stx=%C8%E5%B8%A3%B4%C2&sop=and

상현님이 올려주신 옆으로 흐르는 갤러리를 인덱스 파일에 적용시켰습니다~
근데 tail.php 이 거기에 영향을 받아 강제로 밀리는 현상이 일어나네요~

그니까 tail.php 의 copyright글자가 맨 왼쪽에서 시작되는게 아니라
중간쯤가서부터 시작되서 왼쪽으로는 아예 움직이질 않네요~

marquee 태그의 영향인 것 같지는 않은데 원인을 알수가 없네요~
도와주세요~
  • 복사

댓글 전체

테이블의 속성중에 align="center" 가운데 정렬이죠.
마퀴태그 direction='left' 왼쪽으로 스르륵...
마지막으로, </marquee> 위치를 잘못 닫아서 그런 듯 싶네요. 수정했습니다.



<?
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
$mod = 4;  // 한행당 몇개씩?
$image_width  = 120; // 이미지 폭
$image_height = 80; // 이미지 높이
$t_width = 370; // 전광판 넓이
?>
<style>
img {border="0"
}
.box1 {
border: 1px solid;
border-color:  #B8B8B8;
}
</style>

<table width="370" align="center" border="0" cellspacing="0" cellpadding="0">
<tR>
<td>
<marquee width='<?=$t_width?>' direction='left' scrollamount='5' scrolldelay=100 onmouseover='this.stop();' onmouseout='this.start();'>
<table width="100%" border="0"  align="right" cellspacing="0" cellpadding="0">
<tr><td height="10" colspan="5"></td></tr>
<tr>
<? for ($i=0; $i<count($list); $i++) { ?>
<td align="center" style='padding-right:7px;'>
<?
echo $list[$i][icon_reply] . " ";
echo "<a href='$g4[bbs_path]/board.php?bo_table=$bo_table'>";
$image = urlencode($list[$i][file][0][file]); // 첫번째 파일이 이미지라면
if (preg_match("/\.(gif|jpg|png)$/i", $image)) {
echo "<img src='$g4[path]/data/file/$bo_table/$image' width='$image_width' height='$image_height' border='0'alt='{$list[$i][subject]}'  style='border:1 solid #777777;'>\n";
} else
echo "</a>";
echo "<br>";
echo "<font color='#BCCFCD'>▒</font> <font style=color:#393939;'>{$list[$i][subject]}</font> <font color='#BCCFCD'>▒</font> ";
echo " " . $list[$i][icon_new];
?>
</td>
<? } ?>
<? if (count($list) == 0) { echo "<td colspan=$mod align=center>게시물이 없습니다.</td>"; } ?>
</tr>
<tr><td height="7" colspan="5"></td></tr>
<tr><td height="1" colspan="5" bgcolor="#F2F2F2"></td></tr>
</table>
</marquee>
</td>
</tr>
</table>
© SIRSOFT
현재 페이지 제일 처음으로