Just found an awesome way to resize images in a note

I’m just beginning to use Joplin and love it so much thus far!! Just wanted to share a way to make images inside a note smaller for better viewing. No end to happiness here :smiling_face_with_three_hearts:

<style>
  img {max-width: 200px;}
</style>

![icon-1.png](:/3534525235234356dfgfdgf5bfe48481) 
![icon-2.png](:/3534525235234356dfgfdgf5bfe48481) 
![icon-3.png](:/3534525235234356dfgfdgf5bfe48481)

Hope this helps someone!

4 Likes

Thanks for sharing :blush: I resize images too, and FWIW use a different method.

I replace

![icon-1.png](:/3534525235234356dfgfdgf5bfe48481)

by

<img width="200" src=":/3534525235234356dfgfdgf5bfe48481"/>

Pro: I resize each image separately and they can be displayed side by side on a single row

Cons: I have to repeat the change for each image in the note

Your tip is really good when you need to resize all images of a note at once. I will use it sometimes. Thanks again :folded_hands:

3 Likes