Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #8348

    Joshua C
    Participant

    The featured image in blog posts is gigantic. How do I reduce it’s size?

    #8398

    Kory
    Keymaster

    Joshua,

    The featured image size of the posts is part of their design as is present in all of our demos. If you’re speaking that the image is too tall vertically, you can do some editing of your photos in WordPress via the media manager. Alternately, we have the blog masonry layout available that will make your posts a little smaller and also affect the size of your image.

    Thanks!

    #9499

    Brittany S
    Participant

    I have tried what you just suggested – all my images in WordPress are a quarter of the size the blog is displaying them as . . .

    http://www.aavadental.com/free-teeth-whitening-locations-california/

    and

    http://www.aavadental.com/news

    I love the masonry look on the regular ‘news’ link – but when you open up one of the news items (or blog post) the picture is ginormous and I can not figure out how to make that stop.

    #9538

    Kory
    Keymaster

    Hey Brittany,

    As stated above, the featured image size of the posts is part of their design as is present in all of our demos. In looking at your site, one of the things to keep in mind is that you have no sidebar on your single posts. Adding this back in will allow you to showcase a smaller photo size. Additionally, you can try adjusting your site’s dimensions to be a little smaller. Lastly, while not completely ideal, you could do some sort of hybrid where you show your featured image on the blog, hide it on the single pages with some CSS, and then place a smaller image in the content. Just trying to provide some options to think about.

    Thanks!

    #9965

    Kris F
    Participant

    Hi support!
    I like that option of hiding the huge featured images on the single pages. What would the CSS code be for that?

    Thanks! 🙂
    Kris

    #9987

    Rubin
    Keymaster

    Hey Kris,

    go to your Customizer > Custom > CSS and enter following:

    .single .entry-thumb { display: none; }

    that should remove the featured image on the single page. If you need anything else let me know!

    #10544

    Evrim P
    Participant

    Joshua and Brittany,

    I fix that issue by reducing the post size altogether. This also makes posts look better and easier to read.

    Just go to “Customizer -> Custom -> CSS” and add the following:

    @media (min-width: 1024px) {
      .post, .x-comments-area {
        max-width: 60% !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
    }

    Hope this helps!

    #10573

    Rubin
    Keymaster

    Hey Evrim,

    thanks for chiming in. This is really helpful!

    #22043

    Anna Marie S
    Participant

    Hey, Evrim:

    I also wanted to reduce the image sizes on the blog pages and your fix works beautifully! Thanks so much!

    I’ve been able to find answers like this on the forum and really appreciate how active both the support folks and the developers of this theme are.

    Anna Marie

    #22084

    Rubin
    Keymaster

    Thank you for the kind words! 🙂

    #226814

    tinarose7
    Participant

    Support,
    Regarding removing the image from individual post pages, is there anyway to remove the box with it? The box that was around the featured image continues to appear – http://liquidtext.net/the-problem-with-digital-reading-is-paper/

    Thanks!

    #227007

    Rad
    Moderator

    Hi there,

    Add this css too 🙂

    .single-post .entry-featured {
    display: none;
    }

    Cheers!

    #227281

    tinarose7
    Participant

    that worked, thank you!

    #227493

    Christian
    Moderator

    You’re welcome Tina. Glad we could help.

    #846811

    MarianaBuck
    Participant

    the code Josh created actually changes the sizes for the post carousel as well, anyone to change the blog post size without changing the post carousel size?