[제로] 글, 링크 이미지, 업로드 이미지 모두 가운데 정렬하기
페이지 정보
루루아빠
3,133
2005.06.24 01:36:38
짧은주소
-
https://yadolee.com/tip/31 주소복사
본문
1. 제로보드 내에 include/list_check.php 파일을 여세요
아래 구문을 찾으세요.
$memo = "<table border=0 cellspacing=0 cellpadding=0 width=100% style=\"table-layout:fixed;\"><col width=100%></col><tr><td valign=top>".$memo."</table>";
위 구문을 아래와 같이 변경해주세요.
$memo = "$memo";
2. 갤러리 스킨에 view.php 를 열으세요. 제일 아래쪽에 아래와 같은 내용이 있습니다.
<table border=0 cellspacing=0 cellpadding=0 width=<?=$width?>>
<tr>
<td style='word-break:break-all;' bgcolor=white height=100 valign=top>
<span style=line-height:160%>
<br>
<?=$upload_image1?>
<?=$upload_image2?>
</td></tr>
<tr><td>
<?=$memo?>
<div align=right style=font-family:Tahoma;font-size:7pt;><?=$ip?></div>
</span>
</td>
</tr>
</table>
위 사항을 아래와 같이 변경해주세요.
<table border=0 cellspacing=0 cellpadding=0 width=<?=$width?>>
<tr>
<td style='word-break:break-all;' bgcolor=white height=100 valign=top align=center>
<span style=line-height:160%>
<br>
<?=$upload_image1?>
<?=$upload_image2?>
</td></tr>
<tr><td align=center>
<?=$memo?>
<div align=right style=font-family:Tahoma;font-size:7pt;><?=$ip?></div>
</span>
</td>
</tr>
</table>
변경된 부분은 <td align=center> 란 태그만 넣었습니다
추천인
Progress Bar 13.8%
최신댓글이 없습니다.


댓글
첫 번째 댓글을 남겨 주세요