I'm currently working on a three column layout and facing an issue where the div with id "left" is not triggering any alerts when clicked. This seems to be happening because the div with class wrapper is positioned above it, preventing interactions. Even setting the CSS property cursor:pointer on div#left does not work due to this stacking order.
I have attempted using z-index to resolve this problem...
How can I ensure that the left and right div elements are placed above the wrapper, allowing cursor:pointer and click events to function as expected?