Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #32755
    Nancy
    Participant

    I currently have some custom CSS that I use on another site to allow my feautured images to be inline/

    /* Featured images in summary view left inline with text */
    .blog .entry-summary .wp-post-image,
    .archive .entry-summary .wp-post-image {
    display: inline;
    float: left;
    margin: 0 10px 10px 0;
    border: 0;
    }

    On another site (also using Catch Evolution Pro), I would like to selectively have some images inline and other follow the default. I tried using prefacing the above with .post-id-XXX where XXX is the post id but it didn’t work.

    Other ideas? Can this be done?

    #32756
    Nancy
    Participant

    The site I am trying to do this one is – http://lisaotooleforjudge.com. Post 303 is the one I’d like inline.

    #32776
    Sakin
    Keymaster

    @Nancy: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #post-303 .entry-summary .wp-post-image {
        display: inline;
        float: left;
        margin: 0 10px 10px 0;
    }
    #32890
    Nancy
    Participant

    Perfect. That works great. I almost had it right.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Featured Image – Inline vs default’ is closed to new replies.