im really pulling my hair out with this one. ive sat here for about 5+hours plus trying to figure it out and trial/error the possibilities. i have a central positioned page with a fixed width and i want to set a space in the middle for a gallery that horizontally scrolls. this is proving a big problem.
this is my css:
#container {
height: 800px;
width: 950px;
margin: auto;
overflow: visible;
}
#header {
background-image: url(images/header.gif);
height: 155px;
width: 950px;
}
#main {
height: 417px;
overflow-x: scroll;
overflow-y: hidden;
width: auto;
background-color: #000;
float: left;
/* [disabled]white-space: nowrap; */
/* [disabled]overflow: scroll; */
}
#footer {
background-image: url(images/footer.gif);
height: 128px;
width: 950px;
background-repeat: no-repeat;
clear: both;
}
.text {
font-family: "Arial Narrow", Futura-Book, sans-serif;
font-size: 70%;
width: 14px;
}
.pics {
padding-left: 10px;
float: left;
padding-top: 10px;
overflow-x: scroll;
overflow-y: hidden;
}
i am a newb and trying so hard to learn, but i really cant figure this out. i dont want a table. i can create a vertically scrolling box, but thats not what i want.
please all help very much appreciated
thanks