TH0R: MiT mouseover div bereich ändern

Beitrag lesen

Also ich hab folgende page, problem ist das mein mouseovereffekt nicht klappt:

<html>
<head>
<meta name="linked-style-sheet-name" value="Embedded style sheet">
<meta name="window-location" value="{ -30 -4 954 1288 }">
<meta name="targetted-browsers" value="NS4.0 NS6 IE4.0 IE5">
<title>Volkslauf-Wermelskirchen</title>
<style type="text/css">
#Ueberschrift {
background-color: #ff8000;
height: 50px;
left: 0px;
position: absolute;
top: 0px;
width: 100%;
z-index: 1
}

#Menue {
background-color: #ff8000;
height: 50%;
left: 0px;
position: absolute;
top: 75px;
width: 25%;
z-index: 2
}

#News {
background-color: #c0c0c0;
height: 50px;
left: 5px;
position: absolute;
top: 100px;
width: 15%;
z-index: 3
}

#History {
background-color: #808080;
height: 50px;
left: 10px;
position: absolute;
top: 150px;
width: 15%;
z-index: 4
}

#Lauf {
background-color: #c0c0c0;
height: 50px;
left: 15px;
position: absolute;
top: 200px;
width: 15%;
z-index: 5
}

#Gaestebuch {
background-color: #808080;
height: 50px;
left: 20px;
position: absolute;
top: 250px;
width: 15%;
z-index: 5
}

#Kontakt {
background-color: #c0c0c0;
height: 50px;
left: 25px;
position: absolute;
top: 300px;
width: 15%;
z-index: 5
}

body {
background-color: gray
}
</style>
</head>
<body>
<div id="Ueberschrift"></div>
<div id="Menue"></div>
<div id="News"
onMouseover=" document.all.News.sytle.width='30%'; onMouseout="document.all.News.style.width= '15%'"></div>
<div id="History"></div>
<div id="Lauf"></div>
<div id="Gaestebuch"></div>
<div id="Kontakt"></div>
<iframe name="Haupt" frameborder="0" style="position: absolute; top: 75px; left: 28%; width: 70%; height: 75%; z-index: 6; background-color: #c0c0c0; overflow: auto;
border-style:solid; border-right-width: 5px; border-left-width: 1px; border-top-width: 1px; border-bottom-width: 5px;" src="X.htm"></iframe>

</body>
</html>