From last 2-3 days, I have observed that the post images are blurry on the main page of site www.futureentech.com as shown in the attached screenshots. However, images inside an individual post are ok....
从过去的2-3天开始,我发现网站www.futureentech.com主页上的帖子图像模糊,如附图所示。但是,单个帖子里面的图片都可以....
Please help me to resolve this issue...
请帮我解决这个问题......
2 个解决方案
#1
0
It seems that Blogger team have changed thumbnail resize parameter from /s72-c/
to /s72-c-k-no/
See the same issue in my answer here
似乎Blogger团队已将缩略图调整大小参数从/ s72-c /更改为/ s72-c-k-no /在我的答案中查看相同的问题
To solve your problem replace your code (from comments) with :
要解决您的问题,请使用以下代码替换代码(来自注释):
<script type='text/javascript'>
//<![CDATA[
function bp_thumbnail_resize(image_url,post_title) {
var image_width=370;
var image_height=300;
image_tag='<img width="'+image_width+'" height="'+image_height+'" src="'+image_url.replace('s72-c','w'+image_width+'-h'+image_height+'-c')+'" alt="'+post_title.replace(/"/g,"")+'" title="'+post_title.replace(/"/g,"")+'"/>';
if(post_title!="") return image_tag; else return "";
}
//]]>
</script>
#2
0
I followed the instructions given in the following link
我按照以下链接中的说明进行操作
https://productforums.google.com/forum/#!topic/blogger/4R_sAkgZH9I
https://productforums.google.com/forum/#!topic/blogger/4R_sAkgZH9I
Now, it works fine for my site www.FutureEnTech.com
现在,它适用于我的网站www.FutureEnTech.com
Thank you very much for such a useful information....
非常感谢您提供这样有用的信息....
Kamlesh Jolapara www.FutureEnTech.com
Kamlesh Jolapara www.FutureEnTech.com
#1
0
It seems that Blogger team have changed thumbnail resize parameter from /s72-c/
to /s72-c-k-no/
See the same issue in my answer here
似乎Blogger团队已将缩略图调整大小参数从/ s72-c /更改为/ s72-c-k-no /在我的答案中查看相同的问题
To solve your problem replace your code (from comments) with :
要解决您的问题,请使用以下代码替换代码(来自注释):
<script type='text/javascript'>
//<![CDATA[
function bp_thumbnail_resize(image_url,post_title) {
var image_width=370;
var image_height=300;
image_tag='<img width="'+image_width+'" height="'+image_height+'" src="'+image_url.replace('s72-c','w'+image_width+'-h'+image_height+'-c')+'" alt="'+post_title.replace(/"/g,"")+'" title="'+post_title.replace(/"/g,"")+'"/>';
if(post_title!="") return image_tag; else return "";
}
//]]>
</script>
#2
0
I followed the instructions given in the following link
我按照以下链接中的说明进行操作
https://productforums.google.com/forum/#!topic/blogger/4R_sAkgZH9I
https://productforums.google.com/forum/#!topic/blogger/4R_sAkgZH9I
Now, it works fine for my site www.FutureEnTech.com
现在,它适用于我的网站www.FutureEnTech.com
Thank you very much for such a useful information....
非常感谢您提供这样有用的信息....
Kamlesh Jolapara www.FutureEnTech.com
Kamlesh Jolapara www.FutureEnTech.com