Archived topic
Post title is showing in side featured image, on category page, and not below
3 replies · Started by Soren on November 24, 2021
On my category page the Title is showing inside the featured image and not below, as defined in settings.
https://staging-finepart.kinsta.cloud/category/cutting-example/
If the settings do not control this correctly, then how do I ensure that the title shows under the featured image?
Hi there,
you have this CSS in your Customizer > Additional CSS:
.inside-article {
position: relative;
}
/* Latest Posts styling and effect */
.post-image+.entry-header {
position: absolute;
top: 10;
left: 10;
opacity: 0.5;
transition: opacity 500ms ease-in-out;
}
.post-image:hover+.entry-header {
opacity: 0.5;
pointer-events: none;
}
Its that CSS that is positioning the title over the image
But I didn't put it there :-)
Now it's gone and looks mint.
Thanks a million David.
Glad to be of help!!