| bod1467 on Apr 19, 2006 at 3:18:24 AM (# 2) #1 Table width = 800 means bottom scrollbar if browser is set for 800 wide. (e.g. client has 800 x 600 screen res). 740 is the safe value for all browsers to stop this happening.
#2 I would edit the photo display JavaScript to automatically replace the image in the opened window - having to keep closing it is annoying.
#3 Put a space after Africa and Israel. e.g. Africa (future) rather than Africa(future).
Other than the above then I say - well done, nice effort. tknterry on Apr 19, 2006 at 4:46:30 PM (# 3)Thanks for your input bod. I reduced the table width which eliminated the horizontal scroll bar in the couple browsers I have using 800 X 600 resolution. I also added the space in your #3 suggestion. As for #2 I have been seeking an improved method for image viewing. Im a novice at javascripting but Im in the process of learning. I would like to automatically replace the image. Thats a great idea. I also want to include a caption in the viewing window. The fact that all the large images are opened from the one thumbnail window makes the changes slightly more complicated, but eventually I will find a way. I want to keep the one thumbnail concept to improve page loading and save space though. Thanks again. ---Terry bod1467 on Apr 20, 2006 at 2:14:11 AM (# 4)A popup window script ...
<script LANGUAGE="JavaScript"> <!-- ///////////////////////// // Get browser details // ///////////////////////// var bAgent = navigator.userAgent.toLowerCase();
var poppup; ////////////////////////// // Window close routine // ////////////////////////// function closeWin() { if (poppup) { poppup.close(); } return; } /////////////////////////// // Generic window opener // /////////////////////////// function popupwin(url,wname,scroll,wid,hite) { var scrolling = ((scroll) ? "scrollbars," : ""); if (!poppup || poppup.closed) { poppup = window.open(url, wname, scrolling +",width="+wid+",height="+hite+",top=20,left=20"); if (!poppup.opener) { poppup.opener = self; } if (bAgent.indexOf("msie 4") == -1) { poppup.focus(); } } else { window.poppup.location.href = url; if (bAgent.indexOf("msie 4") == -1) { poppup.focus(); } } return; } //--> </script>
A means of using this script ...
<a href='javascript:popupwin("filename.htm","poppup",true,640,480);'>Put link text/thumbnail here</a>
:-) tknterry on Apr 20, 2006 at 4:18:46 AM (# 5)bod, Thanks very much for the script. I will take a better look at it and test it out when I wake up later. Its 6 AM now. I will let you know how it works. Have a great day. ----Terry bod1467 on Apr 20, 2006 at 6:31:41 AM (# 6)Fuck off Winterwolf on Apr 21, 2006 at 12:20:14 PM (# 7)*takes an erasor and erases Seo2india from his screen.*
Darn now Ive got erasor marks on my screen and hes still here...*goes grumbling off to find a better way of eliminating the spammer* "Grumble, grumble Gosh Darn Grumble grumble stupid idiot Grumble Grumble forum spamming grumble asshats with toiletry grumble inadequacy problems..."
|