从过去的2-3天开始,我发现网站www.futureentech.com主页上的帖子图像模糊不清,如附图所示。但是,单个帖子中的图片还可以....
请帮我解决这个问题...
答案 0 :(得分:0)
Blogger团队似乎已将缩略图调整大小参数从/s72-c/
更改为/s72-c-k-no/
See the same issue in my answer here
要解决您的问题,请将代码(来自评论)替换为:
<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>
答案 1 :(得分:0)
我按照以下链接中的说明进行操作
https://productforums.google.com/forum/#!topic/blogger/4R_sAkgZH9I
现在,它适用于我的网站www.FutureEnTech.com
非常感谢您提供这样有用的信息......
Kamlesh Jolapara www.FutureEnTech.com