I have written a program that will generate a simple html photo album but I have a problem with it
When I open the sample picture file in its own window, it displays correctly, filling the window.
When I use the frame and index to open it in the picture frame it displays the picture full size, which may mean a lot of scrolling or a thumbnail in the corner
I am using IE6
Can anyone tell me what I should do to display pictures the full size of the picture frame and no bigger?
container file
index file
sample picture file
Go not to cats for advice for they will just walk over the keyboard
When I open the sample picture file in its own window, it displays correctly, filling the window.
When I use the frame and index to open it in the picture frame it displays the picture full size, which may mean a lot of scrolling or a thumbnail in the corner
I am using IE6
Can anyone tell me what I should do to display pictures the full size of the picture frame and no bigger?
container file
Code:
<html>
<frameset cols="20%,*">
<frame name="index" src="html/index.html"></frame>
<frame name="picture" src="html/blank.html"></frame>
<noframes>
Sorry, this document can only be viewed with a frames-capable browser.
</noframes>
</frameset>
</html>
index file
Code:
<html>
<body bgcolor="#008080">
<a href="..\picture\P3020060.JPG" target = "picture"> P3020060 </a><br>
<a href="..\picture\P3020061.JPG" target = "picture"> P3020061 </a><br>
</body>
</html>
sample picture file
Code:
<html>
<body>
<img src="../picture/P3020052.JPG" width="100%" height="100%">
</body>
</html>
Go not to cats for advice for they will just walk over the keyboard