Hallo,
Ik heb een site gemaakt in HTML en CSS. Deze werkt prima in IE7 en Firefox, maar op de een of andere manier niet in IE6.. Ik krijg gewoon een blanco pagina.
De site staat hier: http://www.italydenhaag.nl/
Ik heb geen idee waarom 'ie niet werkt.. Iemand enig idee?
Alvast bedankt!
P.S. Als ik de !doctype definitie aan het begin van het document weghaal, dan wordt de pagina wel gerenderd... Maar de layout klopt dan niet meer (in FF nog wel, maar IE7 en IE6 beiden niet)
Ik heb een site gemaakt in HTML en CSS. Deze werkt prima in IE7 en Firefox, maar op de een of andere manier niet in IE6.. Ik krijg gewoon een blanco pagina.
De site staat hier: http://www.italydenhaag.nl/
Ik heb geen idee waarom 'ie niet werkt.. Iemand enig idee?
Alvast bedankt!
P.S. Als ik de !doctype definitie aan het begin van het document weghaal, dan wordt de pagina wel gerenderd... Maar de layout klopt dan niet meer (in FF nog wel, maar IE7 en IE6 beiden niet)
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<!--[if lt IE 7.]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->
<title>Italy - Italiaanse Wijnen & Delicatessen</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="Description" content="Italy - Italiaanse Wijnen & Delicatessen">
<meta name="Keywords" content="italy, den, haag, italiaanse, wijnen, italie, panettone, pesto, fiorella, cristofoli, delicatessen, pasta, roi, cecco, balsamico, modena, salsiccia, mozzarella, friuli, prosciutto, mortadella, coppa, pancetta">
<link href="myCSS.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="http://www.italydenhaag.nl/favicon.ico" type="image/x-icon">
<style type="text/css">
<!--
body,html {
overflow: hidden;
}
body {
background-color: #FFFFFF;
}
body,td,th {
color: #000000;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #333333;
}
a:hover {
text-decoration: none;
color: #999999;
}
a:active {
text-decoration: none;
color: #999999;
}
.style2 {color: #FFFFFF}
.style7 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #FFFFFF;
font-size: 16px;
}
.style9 {font-size: 14px}
.style10 {
font-family: Georgia, "Times New Roman", Times, serif;
color: #CCCCCC;
font-size: 14px;
}
.style11 {color: #CCCCCC}
.style13 {font-family: Georgia, "Times New Roman", Times, serif; color: #CCCCCC; font-size: 14px; font-weight: bold; }
-->
</style>
</head>
<body>
<map name="mailMap" id="mailMap">
<area shape="rect" coords="56,64,162,82" href="mailto:italy@xs4all.nl" alt="">
</map>
<div id="containerDoc">
<div id="centerDoc">
<img src="graphics/linedivider.png" alt="" width="1920" height="9" border="0" align="top"></div>
<div id="homecontainerDoc">
<div id="homeimageleftDoc">
<img src="graphics/imagelefttop.jpg" alt="" width="119" height="161" border="1"></div>
<div id="homeimageleft2Doc">
<img src="graphics/imageleftbottom.jpg" alt="" width="119" height="162" border="1"></div>
<div id="homecenterDoc">
<img src="graphics/homedata.png" alt="" width="336" height="384" border="0"></div>
<div id="homeimagerightDoc">
<img src="graphics/imagerightcenter.jpg" alt="" width="118" height="163" border="1"></div>
</div>
<div id="navigation">
<p align="center">
<a href="index.html" target="_self"><img src="graphics/home.png" alt="" width="74" height="28" border="0" align="middle"></a><br>
<br>
<a href="fotos.html" target="_self"><img src="graphics/fotos.png" alt="" width="70" height="28" border="0" align="middle"></a><br>
<br>
<a href="contact.html" target="_self"><img src="graphics/contact.png" alt="" width="98" height="28" border="0" align="middle"></a><br> </p>
</div>
<div id="rightImage">
<div align="right"><img src="graphics/homeimageright.png" alt="" width="395" height="1200"></div>
</div>
<div id="dataDoc">
<div align="center"><img src="graphics/adresgegevens.png" alt="" width="167" height="82" border="0" align="middle" usemap="#mailMap"><br>
<br>
<img src="graphics/openingstijden.png" alt="" width="226" height="82" border="0" align="middle"><br>
</div>
</div>
</div>
</body>
</html> |