kan niet tiepen in dreamweaver
Ik had erest me site in css met tabellen en dat werkte perfect alleen in IE werkte de site niet.. dus ik dacht zet het in divjesmaar nu als ik index openen in dreamweaver kan ik niet meer tiepen.. dan komt alles boven de plaatjes wat is er verkeerd?
CSS
Code (php)
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
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
@charset "utf-8";
/* CSS Document */
body {
margin: 0px;
padding: 0px;
background-image: url(../images/border.gif);
background-color: #424242;
}
#header {
width: 717px;
margin-right: auto;
margin-left: auto;
background-image: url(../images/bgall.jpg);
margin-top: 30px;
}
#content {
background-image: url(../images/bgall.jpg);
width: 717px;
margin-right: auto;
margin-left: auto;
height: 100%;
}
#content #contentin #welkomonder {
float: left;
height: 36px;
width: 314px;
}
#content #contentin #navflash td {
vertical-align: top;
}
#content #contentin #baronder {
float: left;
height: 36px;
}
#content #contentin #welkom {
float: left;
width: 314px;
}
#content #contentin #navflash {
float: left;
}
#content #contentin #copy {
clear: left;
}
#footer {
width: 717px;
margin-right: auto;
margin-bottom: 20px;
margin-left: auto;
}
#contentin {
margin-right: auto;
margin-left: auto;
width: 698px;
}
#headerin {
margin-right: auto;
margin-left: auto;
width: 698px;
height: 286px;
}
/* CSS Document */
body {
margin: 0px;
padding: 0px;
background-image: url(../images/border.gif);
background-color: #424242;
}
#header {
width: 717px;
margin-right: auto;
margin-left: auto;
background-image: url(../images/bgall.jpg);
margin-top: 30px;
}
#content {
background-image: url(../images/bgall.jpg);
width: 717px;
margin-right: auto;
margin-left: auto;
height: 100%;
}
#content #contentin #welkomonder {
float: left;
height: 36px;
width: 314px;
}
#content #contentin #navflash td {
vertical-align: top;
}
#content #contentin #baronder {
float: left;
height: 36px;
}
#content #contentin #welkom {
float: left;
width: 314px;
}
#content #contentin #navflash {
float: left;
}
#content #contentin #copy {
clear: left;
}
#footer {
width: 717px;
margin-right: auto;
margin-bottom: 20px;
margin-left: auto;
}
#contentin {
margin-right: auto;
margin-left: auto;
width: 698px;
}
#headerin {
margin-right: auto;
margin-left: auto;
width: 698px;
height: 286px;
}
index.php
Code (php)
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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Games</title>
<link href="css/game.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<div id="headerin"><img src="images/header.gif" alt="Game viewer" width="698" height="286" border="0" /></div>
</div>
<div id="content">
<div id="contentin">
<table width="0" border="0" cellpadding="0" cellspacing="0" id="navflash">
<tr>
<td width="172" height="349"><img src="images/navflash.gif" width="172" height="349" /></td>
</tr>
<tr>
<td background="images/navflash.gif"><img src="images/partners.gif" width="172" height="56" /></td>
</tr>
<tr>
<td><img src="images/partnersbg.gif" width="172" height="178" /></td>
</tr>
<tr>
<td><img src="images/parnteronder.gif" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="welkom">
<tr>
<td><img src="images/welkom.gif" width="303" height="160" border="0" /><img src="images/bar.gif" width="11" height="160" border="0" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="games">
<tr>
<td><img src="images/games.gif" width="212" height="160" />
</td>
</tr>
</table> <table height="36" border="0" cellpadding="0" cellspacing="0" id="welkomonder">
<tr>
<td><img src="images/welkomonder.gif" width="303" height="36" /><img src="images/bar.gif" width="11" height="36" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="gamesonder">
<tr>
<td><img src="images/gamesonder.gif" width="211" height="36" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="news">
<tr>
<td><img src="images/nieuws.gif" /></td>
</tr>
</table><table width="0" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/newsonder.gif" width="526" height="50" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="copy">
<tr>
<td><img src="images/copy.gif" /></td>
</tr>
</table>
</div>
</div>
<div id="footer"></div>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Games</title>
<link href="css/game.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<div id="headerin"><img src="images/header.gif" alt="Game viewer" width="698" height="286" border="0" /></div>
</div>
<div id="content">
<div id="contentin">
<table width="0" border="0" cellpadding="0" cellspacing="0" id="navflash">
<tr>
<td width="172" height="349"><img src="images/navflash.gif" width="172" height="349" /></td>
</tr>
<tr>
<td background="images/navflash.gif"><img src="images/partners.gif" width="172" height="56" /></td>
</tr>
<tr>
<td><img src="images/partnersbg.gif" width="172" height="178" /></td>
</tr>
<tr>
<td><img src="images/parnteronder.gif" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="welkom">
<tr>
<td><img src="images/welkom.gif" width="303" height="160" border="0" /><img src="images/bar.gif" width="11" height="160" border="0" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="games">
<tr>
<td><img src="images/games.gif" width="212" height="160" />
</td>
</tr>
</table> <table height="36" border="0" cellpadding="0" cellspacing="0" id="welkomonder">
<tr>
<td><img src="images/welkomonder.gif" width="303" height="36" /><img src="images/bar.gif" width="11" height="36" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="gamesonder">
<tr>
<td><img src="images/gamesonder.gif" width="211" height="36" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="news">
<tr>
<td><img src="images/nieuws.gif" /></td>
</tr>
</table><table width="0" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/newsonder.gif" width="526" height="50" /></td>
</tr>
</table>
<table width="0" border="0" cellpadding="0" cellspacing="0" id="copy">
<tr>
<td><img src="images/copy.gif" /></td>
</tr>
</table>
</div>
</div>
<div id="footer"></div>
</body>
</html>
Groetjes Nick
Dat laatste raad ik je trouwens sterk aan, want dat is de enige manier om goed te leren scripten. Zo heb je honderd procent controle op wat er in je bron terecht komt.
Ik had alleen index naar divjes gemaakt omdat ik dacht dat het dan wel ging werken in IE dat werkte ook.. maar die andere bsetanden waren orgineel en dat is nu helemaal verkeerd gegaan..
http://gameviewer.mde-projecten.org/redactie.php moet je maar is kijken..
hah dat klopt, maar had eer 37 fouten en deze krijg ik niet weg
Code (php)
1
2
3
4
2
3
4
<object type="application/x-shockwave-flash" data="static/swf/banner.swf" width="958" height="272">
<param name="movie" value="static/swf/banner.swf" />
<param name="wmode" value="transparent" />
</object>
<param name="movie" value="static/swf/banner.swf" />
<param name="wmode" value="transparent" />
</object>
wel even aanpassen met je eigen waarden.
waar zet ik hem er dan tussen bij de php code van index? want ik weet niet hoe ik hem daar bij moet krijgen
ik gebruik geen een embed tag?
Bumpen::
SanThe.
Nick Ven schreef op 06.01.2008 20:09:
ik gebruik geen een embed tag?
Wel, op regel 41 van de broncode uit je eerdere post.
Heb ff de site geupload met de tabellen
skoolmusic.nl
Edit: http://validator.w3.org/check?uri=www.skoolmusic.nl&charset=%28detect+automatically%29&doctype=Inline&group=0
Nog 7 fout!:D
Gewijzigd op 01/01/1970 01:00:00 door Nick Ven
Doe dat als volgt:
nu zijn er 10 fout? :P
Ja, maar die zijn redelijk beschijvend toch? Je gebruikt align, wat niet mag. Er mist een body tag voor tabel, enzovoort.
<table width="717" align="center" cellpadding="0" cellspacing="0" class="layou…
maar dat ik zie tog align staan? en "center"
Nee, ze bedoelen: het attribuut "align" is niet volgens de standaard, maar jij gebruikt het toch.
align="center" dus moet ik dat verwijderen dan?
Precies. Opmaak centreren doe je door de boel in een div te zetten. Tabellen gebruiken voor lay-out is niet meer van deze tijd.
Edit:
nog 11 errors
http://validator.w3.org/check?uri=www.skoolmusic.nl&charset=%28detect+automatically%29&doctype=Inline&group=0
Gewijzigd op 01/01/1970 01:00:00 door Nick Ven