Hi,
I’m trying to make what is basically a page of 8 thumbnails with text underneath them in CSS, that fits into an i-frame. The page in question is at:
www32.brinkster.com/jamesclarke/jamesv3/i_books.html
I’ve laid the CSS out as follows:
A container for the whole lot:
#bookscontainer{
float: left;
margin: 0px;
width: 550px;
background-color: #ffffcc;
}
A div for each image:
#menuimages {
float:left;
width:110px;
margin:10px;
padding:5px 1px;
border:0px;
border-color:#ffffcc;
background-color:#ffffcc;
vertical-align:middle;
text-align:center;
font-size:xx-small;
font-family:verdana;
color:#663333;
}
As you can see, I can put in 6 images (using <div id=“menuimages”> and putting in the img url), then the 7th and 8th images just jump down to the bottom of the page - I need them to come up so that it’s just 2 rows of 4 images. Any ideas, o wise ones?
Cheers!