Rank: Advanced Member Groups: Member
Joined: 6/13/2012 Posts: 55
|
In order to apply a footer to each pdf page, I load the html using FooterHtmlFormat, but also need to load a fair amount of css. I imagine this css is getting loaded over and over again for every page (which would be getting large).
Is there a way to share the css from the containing PDFDocument and not load it this way?
Thanks.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,221
|
Hi,
The CSS rules can be loaded repeatly but it should be possible for you to put the CSS into a separate file and then reference that file with link element instead. This way you will still have repeated link element, but the browser engine is smart enough to find out that they are all the same.
Thanks!
|