remove featured image used on banner for posts on Pictorico theme

  • Unknown's avatar

    I have the CSS upgrade and would like to stop the featured image appearing on the top banner when a post is viewed.
    for example on this post https://promo101.wordpress.com/2015/03/20/jepara-indonesia/ I do not want the image to appear on the banner. I just want the text jepara-indonesia to remain against the black transparent background – with no image. Note I still wish to use the featured image so that it will appear on the grid as a squared image when viewed with other posts in the archives eg https://promo101.wordpress.com/category/asia/

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, to hide the featured images on single post pages, add the following CSS

    .single .entry-thumbnail {
        display: none;
    }
    @media screen and (max-width: 600px) {
        .single .entry-header .entry-title {
            font-size: 2em;
    }
    }

    and then find this rule in your CSS and change the height to 170px.

    .single .entry-header {
        height: 170px;
    }
  • Hi there,

    You can try the following block of code, entered into the CSS tab of your site customizer here: https://wordpress.com/customize

    Here is the code to paste in:

    .single .entry-thumbnail {
      background-image: none !important;
      background-color: #000;
    }

    For what it is worth though, I actually like the way the featured images look on your posts. Seems a shame to lose them.

    Cheers!

  • Unknown's avatar

    Thank you very much Jerrysarcastic and thesacredpath. That does the trick.
    Jerrysarcastic – I agree the images do look good for most posts- we will only use this css on a few certain posts so we’ll be keeping the images as is :-)
    thesacredpath, thanks also for the code re: reducing the height. Its great.

  • The topic ‘remove featured image used on banner for posts on Pictorico theme’ is closed to new replies.