Displaying images as-is #811
-
Hi Team, Thank you for your previous responses, and I am sorry if this has been answered already. How do I display images as-is in my post content? Is there a way to do -Aman P.S. What are the allowed ratios? Is there a list of them? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can find the ratios here: https://gethinode.com/docs/components/image/#arguments If you do not specify the ratio, the original aspect ratio should be maintained. You might want to adjust the corner ratio though (by default, images are rounded). For example, add the following to img.rounded {
--bs-border-radius: 0;
} If the original aspect ratio is not preserved, would you mind sharing a (minimal) example so I can reproduce the issue and investigate it? |
Beta Was this translation helpful? Give feedback.
You can find the ratios here: https://gethinode.com/docs/components/image/#arguments
If you do not specify the ratio, the original aspect ratio should be maintained. You might want to adjust the corner ratio though (by default, images are rounded). For example, add the following to
assets/scss/theme/theme.scss
to remove all rounding from regular images:If the original aspect ratio is not preserved, would you mind sharing a (minimal) example so I can reproduce the issue and investigate it?