you said ...... Can anyone enlighten me on this ... my thumbnail pics have about 5 pixels space at the bottom in IE6 that I can't work out how to remove. In the CSS I have specified height and width, and padding is 0, so who knows where its coming from.
 
I am not sure Peter if this is what you mean but you have specified margin: 0; in .gallerygrid  but in .gallerygrid .pic and .gallerygrid .piclast you have specified the margins as - margin: 0 5px 5px 0; and margin: 0 0 5px 0; and as the margin shortcut goes top right bottom left these rules add a 5px space at the bottom. 
.gallerygrid .pic {
	float: left;
	width: 85px;
	height: 85px;
	margin: 0 5px 5px 0;
	border: 1px solid #c1c3ce;
	padding: 0;
}

.gallerygrid .piclast {
	float: left;
	width: 85px;
	height: 85px;
	margin: 0 0 5px 0;
	border: 1px solid #c1c3ce;
	padding: 0;
}
HTH - Maureen


 

Reply via email to