• I have set up the page called blog as my boge page. All the posts have a thumbnail to the left of the title and excerpt. I do not have feature image for each post and I don’t like the default pencil image. Can I remove the thumbnail?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter b2bt

    (@b2bt)

    Also, how to remove the sidebar widgets? I want a fullwidth page and might want to switcth to sidebar later.

    The website is still on localhost

    Hi there!

    You can change the default thumbnail for posts without a featured image by going to:

    1.Appearance -> Theme Options

    2. Page/Post Settings

    3. Default Post Summary Feature Image

    4. Click on ‘Upload’ and choose your image.

    Alternatively you could remove the thumbnail altogether from the posts that don’t have a featured image by using some CSS:

    .blog #post-? .imghoverclass {
      display: none;
    }

    (You’ll need to enter the post id where the ? is to target the posts you want to remove the featured image thumbnail from).

    You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.

    I hope that helps!

    Luke the Daft Duke

    Thread Starter b2bt

    (@b2bt)

    What if I want to remove the thumbnail from all posts? Any custom css for that?

    Try this:

    .blog article .imghoverclass {
      display: none;
    }
    
    .blog article .col-md-5 {
      display:  none;
    }
    
    .blog article .postcontent {
      width:  100%;
    }

    Hey in your theme options you can turn the default post summary to text if you like.

    Kadence Themes

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to remove featured image thumbnail from blog mainpage’ is closed to new replies.