While working on a friend's website, I came across an advertisement that covers the entire background of the site. The current background image is set using CSS:
body {
background-attachment:scroll;
background-color:#000000;
background-image:url("http://gunshyassassin.com/wp-content/uploads/2010/10/gunshy_takeover2OUTNOW4.jpg");
background-position:center top;
background-repeat:repeat-x;
I want to make the entire background image clickable as a link. Here is the link to the site:
Can someone suggest the best way to achieve this? It seems like a simple task, but I am drawing a blank after spending a day on it! It is crucial that only the body background image becomes a link without affecting the main content area (we cannot set the entire body to be a link as it will make all its children clickable). I just need the body background image to lead to a link!