Title: Editing Featured Posts
Last modified: April 1, 2018

---

# Editing Featured Posts

 *  Resolved [porvari](https://wordpress.org/support/users/porvari/)
 * (@porvari)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/editing-featured-posts/)
 * I want to showcase one single post in the section, but as there isn´t three posts
   written the first one gets copied three times. How can I change this so that 
   the one post stands alone on the front page?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Theme Author [lyrathemes](https://wordpress.org/support/users/lyrathemes/)
 * (@lyrathemes)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/editing-featured-posts/#post-10136284)
 * [@porvari](https://wordpress.org/support/users/porvari/) Can you show us your
   URL? Would you like the single post to show up in the center? We may need some
   custom CSS to hide the other two duplicate featured posts.
 * But I would actually suggest hiding the entire featured posts section while you
   create more posts.
 *  Thread Starter [porvari](https://wordpress.org/support/users/porvari/)
 * (@porvari)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/editing-featured-posts/#post-10136372)
 * Yes centering the one post and hiding the duplicates will do! Could you write
   some code? 🙂
 *  [jarektheme](https://wordpress.org/support/users/jarektheme/)
 * (@jarektheme)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/editing-featured-posts/#post-10137432)
 * Hi [@porvari](https://wordpress.org/support/users/porvari/),
 * Please go to Appearance → Customize → Additional CSS and add the following css:
 *     ```
       .frontpage-featured-posts .row > .col-md-4 {
           width: 100%;
           text-align: center;
       }
   
       .frontpage-featured-posts .row > .col-md-4 .entry-summary {
           text-align: center;
       }
   
       .frontpage-featured-posts .row > .col-md-4 img {
           margin: 0 auto;
       }
   
       .frontpage-featured-posts .row > .col-md-4:nth-child(2),
       .frontpage-featured-posts .row > .col-md-4:nth-child(3) {
           display: none;
       }
       ```
   
 * Please note that the image size on featured posts section is 760x400px so your
   image will not take full size of the container.
 * Kind regards

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Editing Featured Posts’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/kale/2.8.2/screenshot.jpg)
 * Kale
 * [Support Threads](https://wordpress.org/support/theme/kale/)
 * [Active Topics](https://wordpress.org/support/theme/kale/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/kale/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/kale/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [jarektheme](https://wordpress.org/support/users/jarektheme/)
 * Last activity: [8 years, 2 months ago](https://wordpress.org/support/topic/editing-featured-posts/#post-10137432)
 * Status: resolved