hi, erst mal hier der teil des menüs:
als erstes: fragt mich bitte nicht wo jetzt id=block herkommt
jedenfalls mein problem:> das ganze funzt nur unter ie. unter netscape kommt das menü wo gaaanz anders, und mozilla und co machen richtig stress.
wie mache ich das menü nun für alle browser richtig?
könnt ihr mir da mal helfen?
PHP-Code:
function MenueAuf(Men){
document.getElementById("unter1").style.visibility = "visible";
}
function MenueZu(Men){
document.getElementById("unter1").style.visibility = "hidden";
}
// steht in der js_menu.js
#unter1
{
Font-Family: Verdana;
Font-Size: 8pt;
Position: absolute;
top: 189px;
Color: #000000;
Background-Color: #efefef;
border:1px solid #000000;
Visibility: hidden;
Width: 100px;
// einstellungen für ein menü block
#haupt
{
Background-Color: #EE6100;
Width: 10px;
Cursor: hand;
}
// steht ja da
<div id="block" style="width: 43px; height: 16px">
<div id="haupt" OnMouseOver="javascript:MenueAuf()" OnMouseOut="javascript:MenueZu()"><img src="images/b_home.gif" border="0"></div>
<//-- Unter Menu //-->
<div id="unter1" OnMouseOver="javascript:MenueAuf()" OnMouseOut="javascript:MenueZu()">
<div onMouseOver="this.style.backgroundColor='#4079a9';" onmousedown="this.style.backgroundColor='#4079a9';" onMouseOut="this.style.backgroundColor='EFEFEF';"> <a href="index.php?id=4w_news.php"><img border="0" src="./images/quadrat.gif"> News</a><br></div>
<div onMouseOver="this.style.backgroundColor='#4079a9';" onmousedown="this.style.backgroundColor='#4079a9';" onMouseOut="this.style.backgroundColor='EFEFEF';"> <a href="index.php?id=hptools/hp-tools.htm"><img border="0" src="./images/quadrat.gif"> HP-Tools</a><br></div>
<div onMouseOver="this.style.backgroundColor='#4079a9';" onmousedown="this.style.backgroundColor='#4079a9';" onMouseOut="this.style.backgroundColor='EFEFEF';"> <a href="index.php?id=workshop/workshop.htm"><img border="0" src="./images/quadrat.gif"> Workshops</a><br></div>
<div onMouseOver="this.style.backgroundColor='#4079a9';" onmousedown="this.style.backgroundColor='#4079a9';" onMouseOut="this.style.backgroundColor='EFEFEF';"> <a href="index.php?id=neulinge.htm"><img border="0" src="./images/quadrat.gif"> Für Neulinge</a><br></div>
<div onMouseOver="this.style.backgroundColor='#4079a9';" onmousedown="this.style.backgroundColor='#4079a9';" onMouseOut="this.style.backgroundColor='EFEFEF';"> <a href="index.php?id=linkus.htm"><img border="0" src="./images/quadrat.gif"> Link us!</a><br></div>
// menü
jedenfalls mein problem:> das ganze funzt nur unter ie. unter netscape kommt das menü wo gaaanz anders, und mozilla und co machen richtig stress.
wie mache ich das menü nun für alle browser richtig?
könnt ihr mir da mal helfen?
Kommentar