I am using SelectPDF and it seems to ignore CCS files that are included in the selected URL. CCS styling works if I access the page directly but not using SelectPDF - a PDF is produced but unstyled.
I have read a number of possible solutions that suggested the following options:-
converter.Options.CssMediaType = SelectPdf.HtmlToPdfCssMediaType.Print;
converter.Options.EmbedFonts = true;
converter.Options.ExternalLinksEnabled = true;
converter.Options.InternalLinksEnabled = true;
converter.Options.JavaScriptEnabled = true;
converter.Options.MinPageLoadTime = 3;
I have tried all of them and still no styling applied.
Any thoughts appreciated.