I have a div that is positioned over a large chunk of the page, this causes the content underneath the div to no longer be selectable / clickable.
Is there a way to remedy this? ie: make a div not have any clickable functionality to it?
#page {
width: 980px;
padding: 0px;
margin-top: 0px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
position: relative;
}
#overlay {
margin: 0px;
padding: 0px;
height: 536px;
width: 422px;
position: absolute;
top: -4px;
right: -20px;
background-image: url(../images/overlay_full.png);
background-repeat: no-repeat;
background-position: left top;
}