D
Defenetiv
Guest
Hallo werte Leserin und Leser,
Ich habe auf meiner Seite :
Einen Klitze kleinen fehler aber komme nicht drauf wie man diesen beheben kann.
Um euch die Werbung des Freehosters zu erspranen hier der Html Code :
Um evtl auch noch die anderen die Arbeit zu ersparen Poste ich auchnoch die Css-Codes.
Hier der Css-Code
Mfg und Danke an alle Defi
Ich habe auf meiner Seite :
Einen Klitze kleinen fehler aber komme nicht drauf wie man diesen beheben kann.
Um euch die Werbung des Freehosters zu erspranen hier der Html Code :
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>My-test</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" type="text/css" href="style.css" /> <!--[if lte IE 6]> <script src="http://code.jquery.com/jquery-latest.js"></script> <script type="text/javascript" src="script.js"></script> <![endif]--> </head> <body> <div id="wrapper"> <!-- Wrapper Start --> <div id="header"> <!-- Header Start --> </div> <!-- Header Ende --> <div id="menue"> <ul id="menu"> <li><a href="#" title="Home">Home</a></li> <li id="angebote"><a href="#" title="Angebote">Angebote</a> <ul> <li><a href="#" title="Angebot 1">Angebot 1</a></li> <li><a href="#" title="Angebot 2">Angebot 2</a></li> <li><a href="#" title="Angebot 3">Angebot 3</a></li> <li><a href="#" title="Angebot 4">Angebot 4</a></li> <li><a href="#" title="Angebot 5">Angebot 5</a></li> </ul> </li> <li id="support"><a href="#" title="Support Pakete">Support Pakete</a> <ul> <li><a href="#" title="Paket 1">Paket 1</a></li> <li><a href="#" title="Paket 2">Paket 2</a></li> <li><a href="#" title="Paket 3">Paket 3</a></li> <li><a href="#" title="Paket 4">Paket 4</a></li> <li><a href="#" title="Paket 5">Paket 5</a></li> </ul> </li> <li><a href="#" title="">Kontakt</a></li> <li><a href="#" title="">Impressum</a></li> </ul> </div> <div id="boxCenter"> <!-- BoxCenter Start --> </div> <!-- BoxCenter Ende --> <div id="content"> <!-- Content Start --> </div> <!-- Content Ende --> </div> <!-- Wrapper Ende --> <div id="footer"> <!-- Footer Start --> © David, Burmeister 2013 All rights reserved. <a id="link" href="#" title="#" target="_self">AGB</a> <a id="link" href="#" title="#" target="_self">Impressum</a> <a id="link" href="#" title="#" target="_self">Kontakt</a> </div> <!-- Footer Ende --> </body> </html>
Um evtl auch noch die anderen die Arbeit zu ersparen Poste ich auchnoch die Css-Codes.
Hier der Css-Code
Hier der javascript-Codebody {font-family:arial; font-size:12px; behavior:url("csshover.htc"); }
div {cursor:default;}
a {text-decoration:none; color:#000000;}
ul {margin:0px; padding:0px; list-style-type:none;}
#menu li {float:left; width:90px; text-align:center;}
#menu li ul{display:none; padding-top:3px;}
#menu li:hover ul {display:block;}
#menu li ul li {background-color:#2F2D49; border-bottom:1px solid #FFFFFF;}
#menu li ul li a{color:#FFFFFF;}
#menu li ul li:hover {background-color:#232323;}
body {
background-color:grey;}
#wrapper {
background-color:darkgrey;
width:1000px;
height:1000px;
margin-left:auto;
margin-right:auto;
margin-top:40px;}
#header {
background-color:dimgrey;
width:1000px;
height:200px;}
#menue {
background-color:lightslategrey;
width:1000px;
height:40px;}
#boxCenter {
background-color:sienna;
width:400px;
height:700px;
float:right;}
#content {
position: relative;
background-color:snow;
width:600px;
height:700px;
float:left;}
#footer {
background-color:dimgrey;
width:900px;
height:40px;
margin-left:auto;
margin-right:auto;
text-align:center;}
Ich komme einfach nicht hinter wie ich diesen fehler beheben kann und hoffe jemand hat einen Klaren durchblick, denn ich sehe den Wald voller Bäumen schon nichtmehr.$(document).ready(function(){
$('li').mouseover(function() {
var $id = $(this).attr('id');
$('#'+$id+' ul').css('display','block');
});
$('li').mouseout(function() {
var $id = $(this).attr('id');
$('#'+$id+' ul').css('display','none');
});
});
Mfg und Danke an alle Defi