I have my site (https://news.clearviewlibrary.org/) set to display my latest blog posts as my home page. When I set it up I was adding this code to each post to exclude the image at the top of the individual post.
.entry-thumb img {
min-width: auto;
}
.entry-thumb {
display: none;
}
.has-post-thumbnail .entry-featured {
border-bottom: none;
}
What I’d like to do is apply that code sitewide, but exclude the main page (https://news.clearviewlibrary.org/), so it shows the featured image from the post. Normally I would go into the posts list, and hover over the post name and grab the id, and make my css changes with that, but I’m not seeing that main page in the list. How would I go about doing this?
Thanks,
Brad