Fix the pictures in Multiline text box in export to pdf

Hi,

how do i shrink the pictures in Multiline text box to fit the screen on pdf when printing? thank you

Hello @jyou,

How do you print the form? Are you printing the Display form?

yes I am using the display.

@jyou,

You can try changing the size of the images inside the text field using the CSS. For this, add a class to the field like so:
image

And this CSS to change the image size when exporting the form to pdf:

.k-pdf-export .my-class img {
    width: 300px;
    height: 200px;
}