Suddenly, all links in #content div are not clickable, but I don’t see any z-index bug? [closed]
That’s easy. You have the following CSS rule: a.themify_lightbox, .module-image a, .module-gallery a, .gallery-icon, .themify_lightboxed_images .post a, .themify_lightboxed_images .type-page a, .themify_lightboxed_images .type-highlight a, .themify_lightboxed_images .type-slider a { pointer-events: none; cursor: default; } This rule applies because body has a class themify_lightboxed_images. pointer-events: none; is the last thing you want on your links. This basically means … Read more