Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

How do I format an image field so that the user inserted image is centered in the field?

Avatar

Level 1

I've tried center anchoring it but it still upper left justifies any image inserted in the image field. 

2 Replies

Avatar

Level 10

If your image field has "use original size" as a sizing option then the image will end up in the top left corner.  If you add the following JavaScript in the initialise event of the image field then it will be centered.

this.para.vAlign = "middle";

this.para.hAlign = "center";

 

Regards

Bruce

Avatar

Level 2

I normally use the old Text Field Trick in LiveCycle.

Create a new Text Field, Set your Text Justification Options and then change the Field to Image Field.

It will retain the Text Field Settings from before.. Used that "trick" many times.