Remove text under blog featured image post

Hi team

You recently helped me resolve this issue with some of my new category blog pages. However, now this problem has somehow returned on my main Blog page. How can I remove the text and ‘read more’ under each of my featured images of blog posts on this page please?
https://fitnizfury.com/home/blog/

I’ve also included the CSS that is already present here. Thanks so much, R.

.x-colophon {
background-color: #FFE5CC;
}
a.entry-thumb:hover:before {
opacity: 0;
}

a.entry-thumb:hover img {
opacity: 1;
}
.single-post .entry-featured {display: none;}
.page.entry-wrap a {
.home .rev-btn {
border-radius: 22px;
}
a.entry-thumb:hover:before {
opacity: 0;
}

a.entry-thumb:hover img {
opacity: 1;
body.category .entry-wrap {
display: none !important;
}
.x-navbar .desktop .x-nav > li ul {
top: 80px !important;
}

Hi there.

Please try to add this code in the custom CSS:

.blog .more-link {
    display: none;
}

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.