How to remove post slider without removing the featured image on Blog page

Hello,

Before I made this post, I tried to look for something similar regarding this issue but nothing seems to resolve the problem. What I only want is to remove the post-slider above the blog posts. What I know is that these were featured images on every post. So I remove the featured image on every post but, then the image is also removed on the Blog page.

What I only want is to remove the post-slider on every posts and but will remain the featured image on the Blog page.

Already turned off post-slider and meta-post but the post-slider still appeared above on every blog post.
I’m using X- Ethos 3 stack.
Please see photos below. Thanks!

Hi,

To remove it, you can add the code below in Theme Options > CSS

.single-post .entry-featured {
   display:none;
}

Hope that helps.

2 Likes

Thanks a lot! It works!
One more thing, can you just provide me a css code how to maximize the container of the section of a post in Cornerstone?

This is the code I tried to tweak for pages to be use in posts but it is not working. Can someone provide me css codes for posts?

.page-id-69 .x-container.max.width.main { /Adjust the following values accordingly/
width: 100%;
max-width: none;
}

Hi,

For post you can add the following.

/* single post container width */     
.single-post  .x-container.max.width.main { 
      width: 100%;
      max-width: none;
}

Hope that helps

1 Like

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