Beim IE7 wird das Bild welches sich groß öffnet wenn mann sich über der Vorschau befindet richtig in der Mitte der Webseite angezeigt und srollt auch nicht mit (so wie ich es haben will), beim IE6 baut der mir das große bild aber einfach unter das kleine. Wie kann die Fixed Funktion auch im IE5+6 richtig dargestellt werden? oder eine 2. Alternative: statt Fixed einfach Absolute zu nehmen aber nur wenn der IE5+6 vom user verwendet werden.
Hier mal mein HTML-Text:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Infobox</title>
<style type="text/css">
<!--
#box {margin:0px 0 0 0px;}
#box a {
color:#ffffff;
background:#b3b06c;
font:bold 16px arial;
text-decoration:none;
display:block;
padding:0px;
border:0px solid black;}
#box a:hover {
color:black;
background:#ddd8b7;}
#box a span {display:none;}
#box a:hover span {
position:Fixed; top:200px; right:250px;z-index:3;
display:block;
width:300px;
color:black;
background:#ffffff;
font:normal 16px arial;
border-style: solid;
border-width:8px;
border-color:cyan blue;
padding:16px;}
-->
</style>
</head>
<body>
<table>
<tr>
<td>
<div id="box"><a href="#"><img src="http://www.clever-travel-shop.de/toys_fashion_more/ebay_mich_seite/db_BMW%20AC%20Schnitzer%20silber%20001.jpg" width="170">
<span><img src="http://www.clever-travel-shop.de/toys_fashion_more/ebay_mich_seite/db_BMW%20AC%20Schnitzer%20silber%20001.jpg"></span></a></div>
</td>
<td>
<div id="box"><a href="#"><img src="http://www.clever-travel-shop.de/toys_fashion_more/ebay_mich_seite/db_BMW%20AC%20Schnitzer%20silber%20001.jpg" width="170">
<span><img src="http://www.clever-travel-shop.de/toys_fashion_more/ebay_mich_seite/db_BMW%20AC%20Schnitzer%20silber%20001.jpg"></span></a></div>
</td>
<td>
<div id="box"><a href="#"><img src="http://www.clever-travel-shop.de/toys_fashion_more/ebay_mich_seite/db_BMW%20AC%20Schnitzer%20silber%20001.jpg" width="170">
<span><img src="http://www.clever-travel-shop.de/toys_fashion_more/ebay_mich_seite/db_BMW%20AC%20Schnitzer%20silber%20001.jpg"></span></a></div>
</td>
<td>
<div id="box"><a href="#"><img src="http://www.clever-travel-shop.de/toys_fashion_more/ebay_mich_seite/db_BMW%20AC%20Schnitzer%20silber%20001.jpg" width="170">
<span><img src="http://www.clever-travel-shop.de/toys_fashion_more/ebay_mich_seite/db_BMW%20AC%20Schnitzer%20silber%20001.jpg"></span></a></div>
</td>
</tr>
</table>
</body>
</html>
Das Ganze Soll mal eine Bildergalerie werden (mit verschiedenen Bildern :-)
Vorab schon mal Vielen Dank für eure Hilfe...