Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #14707
    keone
    Member

    I am trying to display the thumbnail image next to each post’s excerpt when when the page template is set to post/direct the user to a ?cat=xx page (using Category Posts Widget for that), however, it seems that I can only select from the four items list under “Content Featured Image Size” which doesn’t have a thumbnail option.

    I’d like to be able to display the thumbnails on both the main post landing page (or ?cat=xx page) and when you are viewing the specific post, ideally with the option to click on the thumbnail to view the full sized image for more detail.

    I’m not sure if there is custom css for this and/or a plugin that you might recommend.

    Mahalo~

    Site sample page is here:
    http://www.malamakauai.org/mk/?cat=53

    ps – I have second post (http://www.malamakauai.org/mk/?p=452) set to show a featured image, but the first post (http://www.malamakauai.org/mk/?p=473) is not using a featured image, just using a media image insert at the post level (which doesn’t show on main blog landing page).

    As an option, I would also be happy to be able to use some code to call on the media image in the post to be displayed at the featured image thumbnail.

    #14729
    Sakin
    Keymaster

    @keone: You need to add featured image in the post, which will be show in your category page.

    After that if you want to keep the image in the side then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .archive #content .hentry {
        height: 1%;
        overflow: hidden;
    }
    .archive #content .featured-image {
        display: inline;
        float: left;
        width: 30%;
    }
    .archive #content .entry-container {
        display: inline;
        float: right;
        width: 65%;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Showing thumbnail when Content Layout = Excerpt/Blog Display’ is closed to new replies.