Change Thumbnail Size for Blogger Images, Popular Posts Widget
In your template, you'll find a couple of instances of the
"
<img expr:src='data:post.thumbnailUrl'/>
" tag . Using this tag, you can pick up the first image from a post and generate its thumbnail. By assigning a class/id to this tag and using a simple jquery code, we can define a custom thumbnail size for it.Before you begin, make sure you have jquery installed in your template. If not, copy the latest version from below and paste it above the closing head tag
</head>
.<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
Custom thumbnail Size for Post Images
As mentioned in the begening, a 72 x 72 pixel size thumbnail from post image can be created using the tag:
<img expr:src='data:post.thumbnailUrl'/>
1. To the relevant image tag, simply add a class or id to the tag like this:
<img class="post-thumb" expr:src='data:post.thumbnailUrl'/>
2. Just above the closing head tag
</head>
in your template, paste the code below.<script type="text/javascript"> $(document).ready(function() {$('.post-thumb').attr('src', function(i, src) {return src.replace( 's72-c', 's120-c' );});}); <!-- helparchive.blogspot.com --> </script>
3. The "120" is your new thumbnail size. You can increase or decrease the thumbnail width by changing the "120" to any other number. Lastly, ".post-thumb" is the class you have assigned to your images.
Changing thumbnail Size In Popular Posts Widget
Changing the thumbnail size for Popular Post images is simple. Just paste the code below just above closing head tag
</head>
in your template.<script type="text/javascript">
$(document).ready(function() {$('.PopularPosts img').attr('width', '100%').attr('height', 'auto').attr('src', function(i, src) {return src.replace( 's72-c', 's120-c' );});});
<!-- helparchive.blogspot.com -->
</script>
Change "120" to any other number to set the desired size for popular posts thumbnail images.
Please give proper credit if you wish to cover this post on your blog.
Subscribe to:
Post Comments
(
Atom
)
not working at all...
ReplyDeleteHi, It work's just fine. Just make sure you apply the right class/id and have the jquery code in your template.
DeleteThumbnail Size In Popular Posts Widget not working..
ReplyDeleteCan you share the blog address where you are trying to implement this? You don't have a popular posts widget on your 'techh2' blog.
Deletenot working :( :(
ReplyDeleteworks for me. How to change the height though?
ReplyDeleteHeight and Width remain the same. However you can change the height using the right css selector:
Delete.post-thumb { height: 100px }
oh thank you so much :) i wasted days searching for a way to do that , thank you so much , if this one didn't worked for you you have to know that the key is the class name
ReplyDeleteDear, How to remove three dots (...) at the end of post thumbnail (See image, using Below URL) on blogger. Please help me. Thanks.
ReplyDeletehttps://drive.google.com/file/d/0ByuGuHHrxa5GZXFjZEZieXBSV28/view?usp=sharing
oh thank you so much :)
ReplyDeleteEven for me its not working, Please suggest me what i have to do, I followed all the things you told above.
ReplyDeleteMy url where i am facing the problem www.saudi-expatriates.com
I've checked your site. What are the thumbnails for which you want the dimensions changed?
DeleteUnfortunately, it's not working for me either- can I contact you somewhere?
ReplyDeleteSure! Please use the contact page (link is just below the header).
DeleteIt's working very well. Thanks 🏅
ReplyDelete