does anyone know how to make an entire image so on a blog , the image gets cut off

does anyone know how to make an entire image so on a blog , the image gets cut off

Hi,

You can try below steps

  • Resize before uploading
  • Check theme setting
  • Edit theme code “medium” to “master”

  • Add custom css if required
img {
    object-fit: contain;
    width: 100%;
    height: auto;
}