Hi’ya Rue,
Your fix worked really slick, thank you! The title stayed put, just like I wanted and my new text slid into position. Because the text was white on a white background, I added some text-shadow to allow it to be seen. It looks pretty neat, check it out: https://yourhomewaterfilters.com/
Here’s the code I used:
/* Prevents Metadata from being displayed during hover on Post Carousel. Applied globally. */
.x-post-carousel-meta span {display: none;}
/* Applies custom text to Post Carousel during hover state. Applied globally. */
.x-post-carousel-meta::before {content: “Read Post”; color: #fff; text-shadow: -4px 4px 3px #999, 1px -1px 2px #000; font-size: 30px;}
/* Fix background color of Post Carousel, non-hover state. Applied globally. /
.x-post-carousel .entry-cover {
background-color: #fff;
}
/ Prevent Post Carasousel title from disappearing during hover. Applied globally. */
body .x-post-carousel.unstyled .entry-cover:hover .h-entry-cover {
top: calc(100% - 4em) !important;
}
/* Remove featured image from posts, applied globally. Still allows featured image to display in carousel and blog page. */
.wp-post-image {
display: none;
}
Thanks again! Happy Holidays to you! -John