I have menu on a page and div that is absolute positioned. The problem is that when this div is on a page, then I cannot click on any links in menu items.
When I re
CSS - to unblock clicking add to #left_border class following statement:
#left_border
pointer-events: none
(it is cross-browser solution including >= IE11)
Here is source of this solution with more informations. I tested it on chrome, firefox and safari (macOs and iOS) and works :)