这很简单。您有以下CSS规则:
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;
}
此规则适用,因为
body
有一个班级
themify_lightboxed_images
.
pointer-events: none;
是您在链接上最不希望看到的内容。这基本上意味着游标不存在该元素,您可以直接单击它。。
如果您想在不更改任何主题样式的情况下实施自己的规则,或向所有链接添加CSS类,请添加以下CSS规则:
a {
pointer-events: auto !important;
cursor: pointer !important;
}
通常应避免
!important
但这只是暂时的解决办法。它将覆盖您的所有链接。我建议尽快找到更好的解决方案。
提示:这纯粹是一个CSS问题,应该在SO. 我希望你下次能了解更多。