Archived topic
post meta data not clickable like author
3 replies · Started by Mathias on May 13, 2020
Hey,
in desktop and tablet view post meta data like date and author is not clickable even though it shows as hyperlink.
Can you check it.
In mobile view the author is clickable and brings me to the author page.
thanks
Hi there,
Have you tried disabling your custom CSS and see if they are causing the issue?
Hi Leo,
these styles (for creating the box shadow effect) caused the problem:
.full-width-content.separate-containers.single .page-hero + #page .inside-article {
position: relative;
}
.full-width-content.separate-containers.single .page-hero + #page .inside-article:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 300px;
box-shadow: 0 -5rem 10rem rgba(42,49,57,.05);
}
I added z-index:-1 to the last snippet and now it is working.
Thanks.
Glad you've figured out :)