Hej, jag har problem med att koda till float objekten i css. Jag vill ha en logo, en slogan/header, en menu som är i x-led till höger och sen ett bildspel i mitten. Jag har gjort en wrapper och gjort divvar för allt:

/* wrapper */

#wrapper {width:750px;
height:600px;
margin:0px auto;
background-color:#F3F;
}

/*end wrapper*/

/*menu*/

#menu {float:right;
margin:50px 0px 800px 0px;
position:absolute;}

li {list-style:none;
border:0px;}

/* end menu */

body {background-color:#FFF;}

/*header*/

#logo {float:left;
margin:40px 300px 0px 0px;
z-index:2;}

#head {float:right;
margin:0px 0px 0px 0px;
z-index:1;

}

/*slideshow*/

#slideshow {margin:100px 700px 0px 0px;
float:left;}

/*end slideshow*/

Men jag får inte det att bli som jag vill.
HJÄLP!