Search code examples
javascriptjqueryhtmlcssblogger

Blogger: Image blurry after resizing


Image blurry problem after resizing You can see this in the three major images under Header This is a preview of the blog link: Click Here

I hope you help me with this and thank you .....


Solution

  • I found a solution to a problem which is:

    If you look at the image link on Google:

    http://3.bp.blogspot.com/-PzbxBDHLdXQ/U1Bv9to15rI/AAAAAAAD_G/rWHFo52TF3I/w72-h72-p-k-no-nu/chicago_sunset-1280x720.jpg

    You'll find:

    ( w72-h72-p-k-no-nu ) In the link and this is what the following code replaces it with something else

    $ ('img'). attr ('src', function (i, src){return src.replace (/s35-c|s72-c|s400|s640|w72-h72-pk-no-nu|w72-h72-p-nu/gi, 's640');});
    

    Thanks to all