There is something about the thumbnails I wanted to mention. I used the larger images, scaled down by the browser as the thumbnails. This was just a shortcut. It would be better to use actual thumbnail images.
To answer your question, I got a fairly good looking background-image for the thumbnails by using something like this in the style section:
Code:
#container { /*CSS for entire menu of thumbs*/
float:left;
width:300px;
text-align:center;
margin-right:45px;
padding:1em;
background:#cccccc url('background.jpg') center;
}
This replaced:
Code:
#container { /*CSS for entire menu of thumbs*/
float:left;
width:300px;
text-align:center;
padding-right:45px;
}
The background property may be set however you like, see:
http://www.blooberry.com/indexdot/cs...colorbg/bg.htm
or your favorite css reference for more information on the background property and its possible values.
Bookmarks