We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In these screen captures the image block is being vertically stretched. The featured image is OK. Explain.
The text was updated successfully, but these errors were encountered:
This appears to be the same problem as bobbingwide/thisis#13 Easy to test, apply the same fix.
/** Add CSS to prevent large and full sized images from losing their aspect ratio */ .wp-block-image img { height: auto; }
Sorry, something went wrong.
I get a similar problem with the image in a media & text block. The generated CSS is...
.wp-block-media-text__media img, .wp-block-media-text__media video { max-width: unset; width: 100%; vertical-align: middle; }
Adding height: auto; to the style corrects this behaviour as well.
height: auto;
Use same fix as TT1 blocks to prevent images from stretching #8
0a2be5f
3c873cb
bobbingwide
No branches or pull requests
In these screen captures the image block is being vertically stretched.
The featured image is OK.
Explain.
The text was updated successfully, but these errors were encountered: