• Hi

    Can’t find an answer that specifically answers my question. My site https://cruxof.it does reviews that have varying sizes of images. I want to limit the hight of the posts while still previewing the at least part of the image(s) in the post. I’ve been using read more cut off but that doesn’t always help if the images are off size. Ideally i’d like the posts on the roll to be 500×300. Is there a plug in that previews the image, either by reducing the size of it or by cutting it slightly, or something?

    Thanks in advancee

Viewing 4 replies - 1 through 4 (of 4 total)
  • you could add the following to your css in class post:

    (the max-height and overflow property)

    .post {
      margin-bottom:20px;
      margin-left:130px;
      margin-top:10px;
      max-height:300px;
      overflow:hidden;
      width:500px;
    }

    Peter

    Thread Starter nmknmk

    (@nmknmk)

    Great! Few more things I’d like to achieve.
    -Is there a way to add a fade at the bottom of each post
    -make read more link visible at bottom of each post ‘preview’
    -scale down images displayed via main page?

    Thanks for your time

    Thread Starter nmknmk

    (@nmknmk)

    Actually, now it reduces length on post page too.

    Hmm, maybe it’s time thinking about using the excerpt feature. That requires you to do some work, but it might accomplish anything you’re trying to achieve.

    Peter

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Limiting post length in blogroll’ is closed to new replies.