Er meint die bilder in den Popups....
http://members.aon.at/mwagne18/foto/alb1/p01.html
da haben wir 2 generelle probleme.....
in allen deinen css-dateien
(z.B. http://members.aon.at/mwagne18/styl.css; heisst übrigends style und nicht nur styl) findet man HTML.... in css-dateien haben keine html-tags was zu suchen! RIESEN FEHLER! IE filtert den müll raus... andere browser mit unter nicht.
Aus:
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css; charset=iso-8859-1">
<meta name="robots" content="follow">
<title>informatix</title>
<style type="text/css">
<!--
body { background-color:#000000; }
body { background-color:#000000; margin-left:0px; margin-top:10px; text-align:center; }
td { font-family:Arial; font-size:12px; font-weight:normal; color:#ffffff; text-align:center; }
td.g { font-family:Arial; font-size:12px; font-weight:normal; color:#ffffff; text-align:center; vertical-align:middle; }
a:link { color:#333366; }
a:visited { color:#333366; }
a:active { color:#ff0000; }
//-->
</style>
</head>
<body>
</body>
</html>
Alles anzeigen
... wird ...
body { background-color:#000000; }
body { background-color:#000000; margin-left:0px; margin-top:10px; text-align:center; }
td { font-family:Arial; font-size:12px; font-weight:normal; color:#ffffff; text-align:center; }
td.g { font-family:Arial; font-size:12px; font-weight:normal; color:#ffffff; text-align:center; vertical-align:middle; }
a:link { color:#333366; }
a:visited { color:#333366; }
a:active { color:#ff0000; }
body als klasse 2 mal angeben ist übrigens auch falsch.
so... und jetzt zum eigendlich fehler. du gibst beim TD als klasse g (td.g) folgendes an:
Das stellt Text mittig. Eine Tabelle ist aber kein Text. Wird daher weder von Firefox/Mozilla/Netscape7 oder Opera zentriert. IE macht es falsch.
Wenn du die tabelle mittig haben willst, gibt im <table>-tag entweder ein
oder ein
an.
dann wird richtig zentriert.