Hi, I have a splash page on my website, and I want the users to be able to click anywhere inside the body and be linked to the home page. How can I do this? thanks.
Hmmm. Well heres the site. http://www.funvid.net/ I want you to be able to click anywhere on the page, and it would be a link. I tried putting a transparent .gif and setting it to 100% width and height, but it only seems to cover half.
well try to take a screenshot of the site and save the image and then link that image if thats what you want..
This works, but unfortunately, IE doesn't convert the mouse to a finger, even though it links. Odd. <html> <head> <style> #body { margin:0; padding: 0; } #link { margin:0; padding: 0; width: 100%; height: 100%; } </style> </head> <body> <a href="www.google.com"> <div id="link"></div></a> </body> </html>
Just add the cursor CSS, I've added it below. You should do both pointer and hand for cross browser compatibility.