New Topic

Featured Images are showing at full size

Home › Forum › Help › Featured Images are showing at full size

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #834
    StartupWP
    Keymaster

    We’ve purposely left it blank, so to speak.

    Use:

    .attachment-post-thumbnail {
      height: auto;
      max-width: 300px !important;
    }

    Change 300 to your desired width.

    Or if you want it to say, float left with a margin for text to wrap around, use:

    .attachment-post-thumbnail {
      float: left;
      height: auto;
      margin: 10px;
      max-width: 300px !important;
    }

    Please see: https://startupwp.com/topic/customizing-your-theme/

    #835
    wmys
    Participant

    Many thanks for your quick response.

    This works – except that the image in the post itself is now also conforming to that thumbnail size, and I want it to be full size. Here is a blog that shows what I want: http://www.healthyhomecleaning.com/

    See how the thumbnails are all squares of the very same size? It gives a nice, uniform look. Then if you go to the actual post, you can see that the image is full-size.

    #838
    StartupWP
    Keymaster

    You can just add .blog in front like so:

    .blog .attachment-post-thumbnail {
      height: auto;
      max-width: 300px !important;
    }
    #840
    wmys
    Participant

    Thanks very much. That did the trick. Nice template for a great price. :0)

    #843
    StartupWP
    Keymaster

    You’re welcome.

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.