オンマウスでサムネイル画像のコマ間余白設定について
サムネイル画像にオンマウスにより、拡大画像が表示されるページを作っています。
htmlは勉強中なのですがjavascriptの知識がなくソースを借用しているためカスタマイズ方法がわからずに作業が中断している状態です。
タテに並んでいるサムネイル同士の間に5pxほどの隙間を設けたいのですが、どのようにソースを修正すればよろしいのか、どなたか教えていただけると助かります。
よろしくお願いいたします。
サムネイル画像はsamフォルダに、メイン画像はmainフォルダに入れています。
ページソースを貼り付けておきます。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta name="GENERATOR" content="IBM WebSphere Studio Homepage Builder Version 11.0.0.0 for Windows">
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Style-Type" content="text/css">
<LINK href="style.css" rel="stylesheet" type="text/css">
<title></title>
</head>
<body>
<center>
<table width="710" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td bgcolor="#0000ff" height="50" align="center"><b><font color="#ffffff" size="4">メインタイトル</font></b></td>
</tr>
<tr>
<td bgcolor="#0000ff"><font color="#00ffff" size="2"> ↓のサムネイル画像にマウスポインタを合わせて下さい</font></td>
</tr>
</tbody>
</table>
</center>
<center>
<script type="text/javascript">
<!--
function over( name , comm ) {
document.getElementById( "gazou" ).innerHTML = '<img src="' + name + '.JPG">';//画像を表示
document.getElementById( "comment" ).innerHTML = comm;//コメントを表示
document.getElementById("field").style.position="relative";//CSSの相対位置指定
document.getElementById("field").style.top=0+document.body.scrollTop;//イベントが発生したY位置
}
function out() {
document.getElementById( "gazou" ).innerHTML =document.getElementById( "comment" ).innerHTML = '';
}
//-->
</script>
<table>
<tbody>
<tr>
<td width="100">
<img src="sum/001.jpg" target="_top" onmouseover="over('main/001','');" onmouseout="out();"><br>
<img src="sum/002.jpg" target="_top" onmouseover="over('main/002','');" onmouseout="out();"><br>
<img src="sum/003.jpg" target="_top" onmouseover="over('main/003','');" onmouseout="out();"><br>
<img src="sum/004.jpg" target="_top" onmouseover="over('main/004','');" onmouseout="out();"><br>
<img src="sum/005.jpg" target="_top" onmouseover="over('main/005','');" onmouseout="out();"><br>
</td>
<td valign="top" width="600">
<table id="field">
<tbody>
<tr>
<td id="gazou"></td>
</tr>
<tr>
<td id="comment" class="com"></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</center>
</body>
</html>
お礼
できました~^^ こんなに早く回答して頂けて、助かりました! ありがとうございますm(_ _)m