Displaying full sized Image
-
How do I display a full sized image as an option to the currently displayed smaller Image? Here is partial html code. I did not display all the code here. It starts with img src="img src="BlackBeautyMP3PlayerwithPlaylistOption640x480.png" width="640" height="480" . Lets imagine that this code is displaying an image of a mp3 player. The image seems small for code project article. I want to in-large the image on another page to its full size. How do I do this? I am using coffeecup html editor and not the code project's article wizard. Thankx in advance for any correct answer :-D rspercy65
rspercy65
-
How do I display a full sized image as an option to the currently displayed smaller Image? Here is partial html code. I did not display all the code here. It starts with img src="img src="BlackBeautyMP3PlayerwithPlaylistOption640x480.png" width="640" height="480" . Lets imagine that this code is displaying an image of a mp3 player. The image seems small for code project article. I want to in-large the image on another page to its full size. How do I do this? I am using coffeecup html editor and not the code project's article wizard. Thankx in advance for any correct answer :-D rspercy65
rspercy65
Hi rspercy65, Typically what we do is put a full size option clickable within the smaller one. So like this: <a href="BlackBeautyMP3PlayerwithPlaylistOption1200x800.png"><img src="BlackBeautyMP3PlayerwithPlaylistOption640x480.png" width="640" height="480" border="0"/></a> You could also put a comment below if you wanted to direct the reader, like <div class="Caption">Click to see larger image</div> Please let me know if you have further questions or need help with this.
Thanks, Sean Ewington CodeProject
-
Hi rspercy65, Typically what we do is put a full size option clickable within the smaller one. So like this: <a href="BlackBeautyMP3PlayerwithPlaylistOption1200x800.png"><img src="BlackBeautyMP3PlayerwithPlaylistOption640x480.png" width="640" height="480" border="0"/></a> You could also put a comment below if you wanted to direct the reader, like <div class="Caption">Click to see larger image</div> Please let me know if you have further questions or need help with this.
Thanks, Sean Ewington CodeProject