Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #13360
    JayCeeEm
    Member

    Hi,

    Outside of the slider, I’d like to only show thumbnail images with the excerpt text to the right of the thumb (see: techcrunch.com). Currently my homepage shows the full sized featured image w/ the excerpt below. I’ve been unable to find where to edit this in the css file. Any help would be appreciated.

    Thanks!

    http://www.chicago-d.com

    #13378
    Sakin
    Keymaster

    @JayCeeEm: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .home #content .wp-post-image {
        display: inline;
        float: left;
        margin-right: 15px;
        width: 35%;
    }
    #13384
    JayCeeEm
    Member

    Thanks! Now, is there any way to do this without effecting the featured slider? I’d prefer the slider to remain as it was and only impact the other posts on the homepage, if possible.

    #13387
    Sakin
    Keymaster

    @JayCeeEm: Try replacing the previous css with the following

    .home #content .entry-summary .wp-post-image {
        display: inline;
        float: left;
        margin-right: 15px;
        width: 35%;
    }
    #13389
    JayCeeEm
    Member

    Works perfectly! Thank you for your help.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Thumbnail/Word Wrap on Homepage’ is closed to new replies.