• Is there a way to edit the thumbnail settings?
    I’ve using a grid layout and I’d really like to get all the thumbnails to be the same size.
    Goes the same for the thumbnails of the related posts as well – and get a center-top crop of the image and not a center-center crop.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello,

    Unfortunately, There is no setting for it in the theme. But you can use some CSS code. Try adding the below code to the Customize > Custom CSS section to do it. Edit the code as per your need –

    .blog-entry.post .thumbnail img {
        height: 160px;
        background-position: center top;
    } 
    Thread Starter Philbeaux

    (@philbeaux)

    Sorry,
    I’m just now getting around to applying your fix.
    Works great for featured image thumbnails but I’m having trouble applying it to the Related Posts thumbnails.
    How could I get the same result but with related post thumbnails?
    Thanks!

    For the related post try to use the class .related-thumb img to fix it. See below code –

    .related-thumb img {
        height: 160px;
        background-position: center top;
    } 
    Thread Starter Philbeaux

    (@philbeaux)

    No, that’s not quite what I need. It’s for the “Related Posts” above those related posts.

    Here is a screenshot —-
    thumb-position.jpg

    No matter what I do I can’t figure out what element represents that thumbnail.

    • This reply was modified 6 years, 11 months ago by Philbeaux.

    It is coming from the Jetpack plugin. OceanWP also has a related post section so just disable the jetpack related post section from the jetpack plugin settings.

    Thread Starter Philbeaux

    (@philbeaux)

    OK, I see. That makes sense now.

    Thanks!

    You’re welcome!

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Editing Thumbnails’ is closed to new replies.