Hallo miteinander!
Habe mal wieder eine Frage.
Zur Veranschaulichung habe ich euch einen überarbeiteten Screenshot hier angehängt.
Und zwar würde ich gerne wissen ob es möglich ist das als Grafik erstellte Menü über den weißen (per css definierten Bereich) überhängen zu lassen (rot eingezeichnet). Momentan wird die Grafik fix bei 900 Pixel abgeschnitten rechts und links.
Hier die layout.css
Code
#main { border: medium none ;
margin: 50px auto;
background: rgb(255, 255, 255) none repeat scroll 0%;
width: 900px;
text-align: left;
-moz-border-radius-topleft: 8px; -webkit-border-top-left-radius: 8px; -khtml-border-top-left-radius: 8px; border-top-left-radius: 8px;
-moz-border-radius-topright: 8px; -webkit-border-top-right-radius: 8px; -khtml-border-top-right-radius: 8px; border-top-right-radius: 8px;
-moz-border-radius-bottomleft: 8px; -webkit-border-bottom-left-radius: 8px; -khtml-border-bottom-left-radius: 8px; border-bottom-left-radius: 8px;
-moz-border-radius-bottomright: 8px; -webkit-border-bottom-right-radius: 8px; -khtml-border-bottom-right-radius: 8px; border-bottom-right-radius: 8px; background
}
#header { height: 150px;
}
#content { height: 650px;
}
Alles anzeigen
und die style.css
Code
* {margin:0; padding:0; font-size:100%;}
a img {border:0;}
body{background:url(../img/fondo1.gif) top repeat}
#header{overflow:hidden;}
#header .logo{padding:10px 0 0 310px;}
#content{overflow:hidden;}
#content .imageleft{padding:0;}
#content .imageright{padding:0;}
#content .buttonleft{padding-top:17px;}
#content .buttonright{padding-top:17px;}
Vielen Dank!!