Hallo,
ich bin gerade beim Erstellen von http://www.i-ki.de und bin auf ein Problem gestoßen. Ich möchte, dass einige Links, bestehend aus jeweils zwei Bildern und einem kurzen Text, den ganzen Raum einer Zelle füllen. Dass sie die gesamte Breite füllen, habe ich mithilfe eines Tips aus diesem Forum schon hingekriert.
Hier der Code von dem "Navigationsframe" (ist aber auch schon online sichtbar bzw. zu erreichen und http://www.i-ki.de):
<html>
<head>
<title>Forum für Informatik und Künstliche Intelligenz</title>
<link rel="STYLESHEET" type="text/css" href="style/navi.css">
<base target="Hauptframe">
</head>
<body bgColor="#EFEFEF" leftMargin="0" rightMargin="0">
<font face="Verdana" size="3">
<table style="width:100%; height:350">
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="home.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/home.gif" border="0"> Home
</a>
</td>
</tr>
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="aktuell.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/news.gif" border="0"> Aktuell
</a>
</td>
</tr>
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="projekte.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/gbook.gif" border="0"> Projekte
</a>
</td>
</tr>
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="publikationen.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/lexikon.gif" border="0"> Publikationen
</a>
</td>
</tr>
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="downloads.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/download.gif" border="0"> Downloads
</a>
</td>
</tr>
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="forum.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/forum.gif" border="0"> Forum
</a>
</td>
</tr>
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="links.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/links.gif" border="0"> Links
</a>
</td>
</tr>
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="mitglieder.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/aktuell.gif" border="0"> Mitglieder
</a>
</td>
</tr>
<tr>
<td bgColor="#EFEFEF"
OnMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';"
OnMouseOut=this.style.backgroundColor="#EFEFEF">
<a href="impressum.htm" style="display:block; width:100%;">
<img src="pics/leer.gif" border="0"><img src="pics/info.gif" border="0"> Impressum
</a>
</td>
</tr>
</table>
</font>
</body>
</html>
Robert Blutner