Can you please share the server-side error? This client-side error is not something we can use, unfortunately.
Any way to center the url embedded image ?
-
@meetdilip said:
Now that we can embed image by url (thanks for that plugin) is it possible to center it as well somehow ?
You can use css to center images using
margin-left:auto;
andmargin-right:auto;
-
you need to bind it to the images like by tag-name:
img { margin-left: auto; margin-right: auto; }