• I think the CSS which sets images width to 100% is conflicting with Gutenberg Image block and forcing all sizes to be 100% wide. I cannot override this with custom CSS because auto and inherit will default as 100% too.

    Solution is to remove width:100% around line 2904 in this class .page-template-default img,
    .post-template-default img {
    width: 100%;
    height: auto;
    }

  • The topic ‘image width bug’ is closed to new replies.