Tagged: , ,

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #153006
    Pedrosilva
    Participant

    Hi,

    How can I let all thumbnails on homepage and archives with the same size (height and width)?

    Thanks

    #153012
    Skandha
    Participant

    @pedrosilva: The thumbnail on your homepage and archives page depend on their original image size. If you want all the thumbnails to have similar size you will need to upload all images with similar height and weight or the same aspect ratio.

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    #153067
    Pedrosilva
    Participant

    There is no other way? With CSS for example

    Thanks

    #153078
    Skandha
    Participant

    @pedrosilva: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (min-width:767px) {
    	.archive-post-wrap .featured-image a img {
    		width:250px;
    		height:250px;
    	}
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #153121
    Pedrosilva
    Participant

    Worked!! Thanks Very much
    I Just had to add object-fit: cover;

    #153147
    Skandha
    Participant

    @pedrosilva: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/clean-journal/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    #153986
    Pedrosilva
    Participant

    Hi,

    One more thing, if is not too much trouble, is it possible to put the thumbnail bellow the post title of archives (or at least above) on mobile devices?

    Thanks

    #154116
    Skandha
    Participant

    @pedrosilva: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (max-width:767px) {
    	.excerpt-image-left .has-post-thumbnail .archive-post-wrap .featured-image {
    		float:none;
    	}
    	.excerpt-image-left .has-post-thumbnail .archive-post-wrap .entry-container {
    		float:none;
    	}
    }

    Let me know if this is what you want.
    Kind Regards,
    Skandha

    #154199
    Pedrosilva
    Participant

    Best support on WordPress. Thanks very much. When I need a Premium theme you will be my first option.

    Best regards

    #154202
    Skandha
    Participant

    @pedrosilva: Thank you so much for your appreciation. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Thumbnails size on homepage and Archives’ is closed to new replies.