Embed PDF documents size

Hello,

I have a lot of attached pdf files and I use “Embed PDF documents”

How can change the size in view because is to small and cannot be view.


Regards,

You can override the width/height of the embedded PDF documents size by css. For example:

.pdfobject {
width: …;
height: …;
}

NOW - WORK FINE…

.pdfobject{
width: 1000px !important;
height: 560px !important;
}


Thanks.