Hey guys. Here I share with you the snippet I use to limit the size of pictures in Live View. s a picture is worth a thousand words, I found very important to show them properly inside my notes. Because all pictures are not landscape, the snippet has a max-width and max-height that you can set according to your taste. Feel free to adapt the code for your own convenience.
.image-embed img {
display: block;
max-width: 250px;
max-height: 250px;
width: auto;
height: auto;
margin: 1em auto 1em auto !important;
}
This is how it looks like:
