Canard theme removing post title and featured post image in CSS

  • Unknown's avatar

    I’m trying to completely remove the post header image/title. I copied some code from another thread and I got rid of the header image but the title is still there. This is what it looks like right now http://i.imgur.com/OPEoDhf.png.

    This is what I have in the css that I copied from another thread.

    .attachment-canard-single-thumbnail {
      visibility: hidden;
     height: 0px;
    }
    
    .entry-hero .post-thumbnail {
         background-color: none;
    }
    
    .entry-header-wrapper {
         background-image: none;
    }
    
    .entry-header-wrapper .entry-title {
         color: #000000;
         text-shadow: none;
    }
    
    .entry-header-wrapper .cat-links a {
         color: none;
         text-shadow: none;
    }
    
    .page h2 {
     display: none;
    }

    I just want to get rid of the title or at least reduce the text size.

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

  • Unknown's avatar

    Oh and I’m using a wordpress premium account.

  • Unknown's avatar

    Hi badger0505

    This should work for you.

    .entry-header-wrapper .entry-title {
        display: none;
    }
    
    .entry-hero .post-thumbnail {
        display: none;
    }
  • The topic ‘Canard theme removing post title and featured post image in CSS’ is closed to new replies.