Hallo!
Ich habe ein kleines Problem mit meiner CSS-Datei. Und zwar ist auf der Website die breiter größer als 100%. Sprich, man kann zur Seite scrollen und das sollte nicht möglich sein. Hoffe ihr könnt mir da helfen.
#nav{
list-style: none;
left: 35%;
height: 38px;
position: relative;
z-index: 500;
font-family: arial, verdana, sans-serif;
}
#nav li.top{
display: block;
float: left;
height: 38px;
}
#nav li a.top_link {
display: block;
float: left;
height: 35px;
line-height: 33px;
text-decoration: none;
padding: 0 0 0 12px;
cursor: pointer;
}
#nav li a.top_link span {
float: left;
display: block;
padding: 0 24px 0 12px;
height: 35px;
}
#nav li:hover a.top_link {
color: #ff0031;
}
#nav li:hover {
position: relative;
z-index: 200;
}
#nav li:hover ul.sub{
left: 1px;
top: 38px;
background: #ffffff;
padding: 3px;
border: 1px solid #3e3e3e;
white-space: nowrap;
width: 108px;
height: auto;
z-index: 300;
}
#nav li:hover ul.sub li{
display: block;
height: 20px;
position: relative;
float: left;
width: 90px;
font-weight: normal;
}
#nav li:hover ul.sub li a{
display: block;
font-size: 11px;
height: 18px;
width: 88px;
line-height: 18px;
text-indent: 5px;
color: #000;
text-decoration: none;
border: 1px solid #ffffff;
}
#nav li:hover ul.sub li a:hover{
background: #bababa;
color: #ff0031;
border-color: #fff;
}
#nav li:hover ul.sub li a.fly:hover{
color:#fff;
}
#nav li:hover li:hover ul,
#nav li:hover li:hover ul ul,
#nav li:hover li:hover li:hover ul ul,
#nav li:hover li:hover li:hover li:hover ul ul{
left: 90px;
top: -4px;
background: #ffffff;
padding: 3px;
border: 1px solid #3e3e3e;
white-space: nowrap;
width: 90px;
z-index: 400;
height: auto;
}
#nav ul,
#nav li:hover ul ul,
#nav li:hover li:hover ul ul,
#nav li:hover li:hover li:hover ul ul,
#nav li:hover li:hover li:hover li:hover ul ul{
position: absolute;
left: -9999px;
top: -9999px;
width: 0;
height: 0;
margin: 0;
padding: 0;
list-style: none;
}
#nav li:hover li:hover a.fly,
#nav li:hover li:hover li:hover a.fly,
#nav li:hover li:hover li:hover li:hover a.fly,
#nav li:hover li:hover li:hover li:hover li:hover a.fly{
color: #fff;
border-color: #fff;
}
#nav li:hover li:hover li a.fly,
#nav li:hover li:hover li:hover a.fly,
#nav li:hover li:hover li:hover li:hover a.fly,
#nav li:hover li:hover li:hover li:hover li:hover a.fly{
color: #000;
border-color: #ffffff;
}
a:link{
color: black;
text-decoration: none;
margin-left: 2%;
}
a:visited{
color: black;
}
a:hover{
color: red;
}
a.mail{
color: blue;
text-decoration: underline;
}