Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #873072

    Hello,

    I would like to change the size of the thumbnails of my blog list. When I inspect it, I can see it’s set up to 81x81px, but I have no idea where this is coming from. I’d like to change it to 150px, and have it displayed on the left-hand side. Would you be able to help please?

    Thank you,

    Anna

    #873966

    Hey annkaczmarek,

    Thank you for using Enfold.

    Please adjust the size of the thumbnail on the Settings > Media panel then regenerate the images.

    // https://wordpress.org/plugins/force-regenerate-thumbnails/

    After that, add this code in the Quick CSS field.

    .small-preview {
        width: 150px;
        height: 150px;
    }
    
    .single-small .post_author_timeline {
        left: 80px;
    }

    Best regards,
    Ismael

    #874822

    Thanks Ismael, but this is not what I had in mind. The provided code changes the thumbnail image within the post article.
    I’d like to change the thumbnail image on this page https://www.annapinnock.co.uk/articles/ which is a page that list all the articles. At the moment it’s still 81x81px. Could you please help? I need to remove the code you provided as it messes up my blog article.

    Many thanks,

    Anna

    #875045

    Hi,

    Thank you for the update. Please use the following css code instead.

    #top .fullsize .template-blog .blog-meta {
    width: 180px;
    }
    
    .small-preview {
    width: 180px;
    height: 180px;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: 30em;
    }

    Best regards,
    Ismael

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