I have a cross browser issue, and I am totally stuck, I am running a script and it works fine in firefox, google chrome, and safari, but in IE7, it doesnt work, the box is meant to be black, and it is white in ie7, and when you load the page after 30 seconds an error message comes up. The site is http://www.giggigelateria.co.uk. Money is in paypal for person to fix it. Please Help!!!
there are some problems in the javascript, b/c it is not working in firefox also. give 2-3 hrs and i ll give u the solution, but 1st explain wat u want to do.
There are 2 Problems on IE7: 1. Black box. 2. Error message as on attachment. Solution: 1. Because it's an iframe, it's totally a separate web page. Therefore the background color must be set inside the code of the file that's source of the iframe. You should adjust that. 2. Sorry, I'm too sleepy, and your site doesn't let me save itself so I can try to modify the code. I guess someone else deserve the $10.
I tried the page at your new location and get a 404 Not Found. I do know why you are getting a "White" box in IE7. As for the 30 seconds error message, I have a couple of possibilities on that one although the page loaded in under 30 seconds for me so I didn't see the error message. That being said, I believe I have a solution for both but just have a couple of quick questions. PM me and I can provide you my email address to explain things in more detail.
its back to the homepage now, but white box still showes up when image is clicked, anyone know what to do?
everything is fine. all you hav to do is update ya java version to latest one for I.E.7. c the attached screenshot for proof. do i deserve the $20 ?
Dear harrymn! Your problem is not for any IE6/IE7 or Firefox or for any other IE browser. The main problem for the white background is that you directly call the image (after click on the particular images) into your frame, which generate white space at top and left side of the image (see the image http://www.giggigelateria.co.uk/people/3.JPG ). This problem can be solved by call the image in another page and then call the page to your frame. See the details: Your frame code: <iframe id="box" name="box" src="box.html" height="300" width="448" frameborder="0" scrolling="no"> </iframe> When we click on a particular image the frame src value change to that particular image, like the... Test this frame: <iframe id="box" name="box" src="http://www.giggigelateria.co.uk/people/3.JPG" height="300" width="448" frameborder="0" scrolling="no"> </iframe> As a result white area. Your solvent: 1) Create an .asp file viz, box.asp with the following source: <html> <head> </head> <body topmargin="0" leftmargin="0" bgcolor="#000000"> <img src=<%=request("name")%>> </body> </html> 2) When click on the particular images the frame src value should be: http://www.giggigelateria.co.uk/box.asp?name=http://www.giggigelateria.co.uk/people/thumbs/27.JPG Modify your page script ORIGINAL( From your site) function view(url) { window.frames['box'].location.href = url; return false; } MODIFIED AS: function view(url) { window.frames['box'].location.href = "http://www.giggigelateria.co.uk/box.asp?name="+url; return false; } Contact for further information or problem. Are you willing to pay rewards? Thanks