• Hi. I normally visit my site when I’m logged into WordPress. All looks fine. Thumbnails are the correct size, which is 150 x 150. However, I recently logged out of WordPress and went to my site and noticed my thumbnails were huge, blurry & pixelated. Because I don’t normally visit my site while being logged out, I don’t know how long this has been going on. I’m sure my users have seen it this way for awhile and I had no idea.
    Any ideas what could be causing this? Why would it look fine when I’m logged in?

    Thank you for your help!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    I have checked the issue.
    All the img tags of your post have a class named ‘alignleft‘ and a width property is set with importance like ‘width: auto !important‘. It is overriding the width-height(150*150) style.

    To fix it, you can try the below CSS in the ‘Appearance → Customize → Additional CSS‘ field.

    CSS:

    .entry-content .entry-image-link img {
    	width: 150px !important;
    	height: 150px !important;
    }

    Hope the answer helps.
    Thank you.

Viewing 1 replies (of 1 total)
  • The topic ‘Thumbnail Pics Suddenly Large & Blurry’ is closed to new replies.