I am new to Dreamweaver, and stumped. Though I can do it easily with frames I cant get CSS to allow user to click on one of several thumbnails in a left column and show larger image of the clicked thumb in the main area of the SAME page. Is it possible? Thanks for helping.

here is how to do it in javascript:

<!-- your image -->
<img src="YOUR_THUM_IMAGE_PATH" onclick="javascript:fillDiv('YOUR_BIG_IMAGE_PATH','div1');" />
	<div id="div1" style="width:100; border:thick; display:inline;">click the image to make new image appear here</div>

<script type="text/javascript">
function fillDiv(imgurl, div){
	document.getElementById(div).innerHTML="<img src='"+imgurl+"' />";
}
</script>
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.