ik heb een probleem met een site van mij namelijk ik heb er een menu in zitten die gebruik maakt van java. Alleen als ik het invoeg in de al bestaande site dan veranderen alle kleuren en dat komt door iets wat er in de code van de site verkeerd staat maar wat?
Kunnen jullie mij vertellen of jullie een fout in dit stuk html zien wat de hele site zou kunnen beïnvloeden. Ik heb het menu apart gemaakt en dus kan het zijn dat hij het rekent als een aparte pagina is dat misschien het probleem en hoe kan ik het oplossen?
Kunnen jullie mij vertellen of jullie een fout in dit stuk html zien wat de hele site zou kunnen beïnvloeden. Ik heb het menu apart gemaakt en dus kan het zijn dat hij het rekent als een aparte pagina is dat misschien het probleem en hoe kan ik het oplossen?
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
104
105
106
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Site 1</title>
<style>
body{font-family:verdana;}
table{font-size:80%;background:black}
a{color:black;text-decoration:none;font:bold}
a:hover{color:black}
td.menu{background:#504C90}
table.menu
{
font-size:100%;
position:absolute;
visibility:hidden;
}
</style>
<script language="JavaScript">
function toonmenu(elmnt)
{
document.all(elmnt).style.visibility="visible"
}
function verstopmenu(elmnt)
{
document.all(elmnt).style.visibility="hidden"
}
</script>
</head>
<table width="100%">
<tr bgcolor="#F8B828">
<td onmouseover="toonmenu('site1')" onmouseout="verstopmenu('site1')">
<a href="index.htm">Home</a><br />
<table class="menu" id="site1" width="100%">
</table>
</td>
<td onmouseover="toonmenu('site2')" onmouseout="verstopmenu('site2')">
<a href="index.htm">Teams 2002</a><br />
<table class="menu" id="site2" width="100%">
<tr><td class="menu"><a href="ferrari.htm">Ferrari</a></td></tr>
<tr><td class="menu"><a href="mclaren.htm">Mclaren</a></td></tr>
<tr><td class="menu"><a href="williams.htm">Williams</a></td></tr>
<tr><td class="menu"><a href="sauber.htm">Sauber</a></td></tr>
<tr><td class="menu"><a href="jordan.htm">Jordan</a></td></tr>
<tr><td class="menu"><a href="bar.htm">BAR</a></td></tr>
<tr><td class="menu"><a href="renault.htm">Renault</a></td></tr>
<tr><td class="menu"><a href="jaguar.htm">Jaguar</a></td></tr>
<tr><td class="menu"><a href="arrows.htm">Arrows</a></td></tr>
<tr><td class="menu"><a href="minardi.htm">Minardi</a></td></tr>
<tr><td class="menu"><a href="toyota.htm">Toyota</a></td></tr>
</table>
</td>
<td onmouseover="toonmenu('site3')" onmouseout="verstopmenu('site3')">
<a href="index.htm">Races 2002</a><br />
<table class="menu" id="site3" width="100%">
<tr><td class="menu"><a href="http://www.f1newspaper.com">Australia</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Malaysia</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Brazil</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">San Marino</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Spain</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Austria</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Monaco</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Canada</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Europe</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Great Britain</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">France</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Germany</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Hungary</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Belgium</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Italy</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">U.S.A.</a></td></tr>
<tr><td class="menu"><a href="http://www.f1newspaper.com">Japan</a></td></tr>
</table>
</td>
<td onmouseover="toonmenu('site4')" onmouseout="verstopmenu('site4')">
<a href="history.htm">History</a><br />
<table class="menu" id="site4" width="100%">
</table>
</td>
<td onmouseover="toonmenu('site5')" onmouseout="verstopmenu('site5')">
<a href="f1movies.htm">F1 Movies</a><br />
<table class="menu" id="site5" width="100%">
</table>
</td>
<td onmouseover="toonmenu('site6')" onmouseout="verstopmenu('site6')">
<a href="f1pool.htm">F1 Betting game</a><br />
<table class="menu" id="site6" width="100%">
</table>
</td>
<td onmouseover="toonmenu('site7')" onmouseout="verstopmenu('site7')">
<a href="cars2002.htm">Cars 2002</a><br />
<table class="menu" id="site7" width="100%">
</table>
</td>
<td onmouseover="toonmenu('site8')" onmouseout="verstopmenu('site8')">
<a href="mailto:jacanja@casema.net">Contact Us</a><br />
<table class="menu" id="site8" width="100%">
</table>
</td>
</table>
</html> |