Dropzone.js – 4 [The preview thumbnail image is not thumbnail size]

The following image says it all :

The images in the thumbnail are not in their perfect size. To solve this, we have to add some CSS. A css tag like following in the <head> section, after the dropzone.css will do the trick.

    <style type="text/css">
      .dz-image img{
        width: 100%;
        height: 100%;
      }
    </style>

After adding the css tag, it wll become like following:

Leave a Reply

Your email address will not be published. Required fields are marked *