Well, I don't really understand your question. But I did notice that you have quite a few <tr> with content right in them, instead of putting the content inside a <td>, and the <td> inside the <tr>. That was really making a mess of things.
I spent about 30 seconds on it, and came up with:
code:
<html>
<head>
<link rel="stylesheet" type="text/css" href="formatingblack.css">
<title>
</title>
</head>
<body onLoad="javascript :parent.frames['nav'].location ='navigation.php?color=white'" bgcolor="#000000" link="#FFFFFF" text="#FFFFFF" vlink="#DDDDDD">
<h2> Gegen Krieg und Gewalt</h2>
<br>
<pre>Anläßlich der Dekade gegen Gewalt,
ausgerufen durch die EKHN,
wurde in unseren Kursen zu diesem
Themenkomplex gearbeitet.
Wir stellten fest, daß Gewalt viele
Gesichter haben kann. In dieser
Ausstellung wird dies näher beleuchtet.</pre>
<table border="0" style="margin-top:5px; width: 100%;">
<tr>
<td>
<table>
<tr>
<td><a href="showimage.php?iId=17">Folter</a></td>
</tr>
<tr>
<td nowrap>von Elena Leussidis</td>
</tr>
</table>
</td>
<td>
<a href="showimage.php?iId=17"><img src="displaythumb.php?iId=17"></a>
</td>
<td> </td>
<td>
<table>
<tr>
<td><a href="showimage.php?iId=18">Target</a></td>
</tr>
<tr>
<td nowrap>von Michael Faust</td>
</tr>
</table>
</td>
<td>
<a href="showimage.php?iId=18"><img src="displaythumb.php?iId=18"></a>
</td>
<td> </td>
<td>
<table>
<tr>
<td><a href="showimage.php?iId=19">Knechtschaft</a></td>
</tr>
<tr>
<td nowrap>von Harry Hinz</td>
</tr>
</table>
</td>
<td><a href="showimage.php?iId=19"><img src="displaythumb.php?iId=19"></a></td>
<td> </td>
</tr>
<tr>
<td>
<table>
<tr>
<td><a href="showimage.php?iId=20">Mensch und Natur</a></td>
</tr>
<tr>
<td nowrap>von Peter Rahn</td>
</tr>
</table>
</td>
<td><a href="showimage.php?iId=20"><img src="displaythumb.php?iId=20"></a></td>
<td> </td>
<td>
<table>
<tr>
<td><a href="showimage.php?iId=21">Mensch und Tier</a></td>
</tr>
<tr>
<td nowrap>von Sonja Schmidt</td>
</tr>
</table>
</td>
<td><a href="showimage.php?iId=21"><img src="displaythumb.php?iId=21"></a></td>
<td> </td>
<td>
<table>
<tr>
<td><a href="showimage.php?iId=22">Geld regiert die Welt</a></td>
</tr>
<tr>
<td nowrap>von Jenny Stiebich</td>
</tr>
</table>
</td>
<td><a href="showimage.php?iId=22"><img src="displaythumb.php?iId=22"></a></td>
<td> </td>
</tr>
</table>
<a href="showgallery.php?id=5&offset=0"><- Zurück</a> <a href="showgallery.php?id=5&offset=12">Weiter -></a>
</body>
</html>
I'm not so sure I'd have that many tables in there. That's quite a few. And I'd use XHTML compliant code, which would require image attributes like width, height, and ALT; using a trailing slash for non-closing tags, etc.
[This message has been edited by Pugzly (edited 04-08-2002).]