This topic is empty.
-
AuthorPosts
-
-
Joe MGuestI’m using Purea-Magazine for an intranet site. On the home page, we have the three latest posts appearing in 3 boxes with featured images. Below that, all current posts appear, each with a repetition of the featured image. I’ve found a plugin, “Conditionally display featured image on singular pages and posts” which hides the featured image when viewing a post as a full page, but I haven’t seen a way of removing the featured images from repeating in the lower portion of the home page body section (below the three image boxes).
I thought maybe setting
.section-layout-1-area-box .layout-1-post-image {
display: none;
overflow: hidden;
}in the Posts Layout 1 section of style.css would do it, but no luck there. Any ideas?
Thanks! -
Spiracle ThemesGuestHi Joe,
Could you please post your website URL?
Best Regards
-
Joe MGuestSorry, it’s an intranet site only, so it’s not accessible from outside of our network. This is what I’m talking about, though:
-
Joe MGuestThis reply has been marked as private. -
Spiracle ThemesGuestHi Joe,
Try this CSS
.home .blog-post img {
display: none;
}Copy and paste it in Appearance -> Customize -> Additional CSS
Let us know if this works for you or not.
Best Regards
-
Joe MGuestThank you. That did the trick nicely!
-
-
AuthorPosts