Dear all,
First of all I want to say thanks to the people behind Dropzone, this is an awesome project.
I am wondering if, in the case of a MaxFiles: 1 usage of Dropzones, it was an option/way to center the unique image preview.
By default, it seems like uploads are aligning to left of the element and I cannot find any way to change that.
Any input highly appreciated!
I know that its been a year since the question was asked, but the solution I found might be helpful for future reference.
You just need to add the text-align: center CSS property to any ancestor of the image preview.
The image preview is indeed an inline-block, and inline-blocks behave like text.
In my case I just added this in my CSS file:
.dropzone {
text-align: center;
}
Most helpful comment
I know that its been a year since the question was asked, but the solution I found might be helpful for future reference.
You just need to add the
text-align: centerCSS property to any ancestor of the image preview.The image preview is indeed an inline-block, and inline-blocks behave like text.
In my case I just added this in my CSS file:
.dropzone { text-align: center; }