TroubleshootingMarch 16, 2026
Meidy Baffou·LazyPDF

PDF Background Color Missing After Converting: How to Fix It

You design a beautiful document with colored backgrounds — a dark header, colored section dividers, a branded footer — and then convert to PDF. The result is a stark white document with all the color stripped away, looking nothing like your original. Background color loss during PDF conversion is one of the most common and most frustrating conversion problems. It affects documents converted from Word, HTML, Google Docs, and other formats. The causes are specific and predictable, and most are entirely fixable once you understand what's going on. This guide covers the main reasons backgrounds disappear during conversion and gives you actionable steps to preserve them.

Why Background Colors Disappear in PDF Conversion

Background colors go missing during PDF conversion for several distinct reasons: **'Background Printing' disabled in Word**: Microsoft Word has a setting called 'Print background colors and images' that is OFF by default. This means that when Word exports to PDF (which internally uses its printing engine), backgrounds are excluded. This is the number one cause of missing backgrounds in Word-to-PDF conversions. **HTML print stylesheets stripping backgrounds**: In HTML documents (webpages, email templates, HTML editors), CSS backgrounds are often suppressed by print stylesheets. When converting HTML to PDF, converters use a print-like rendering mode, and the standard `@media print` CSS typically includes rules to remove background colors to save printer ink. This is intentional behavior in web standards that creates problems for PDF conversion. **Application background vs. content background**: Some applications distinguish between the page background (what the application shows but doesn't consider part of the document) and content backgrounds (explicitly defined fills). Word's page color is often treated as an application background and excluded from PDF output. **Transparency handling**: Some backgrounds are defined with partial transparency. When the conversion process doesn't properly flatten transparency, backgrounds may disappear or render as white. **Color space issues**: Certain background colors defined in non-standard color spaces may not convert correctly to PDF's color model, resulting in white or incorrect colors.

  1. 1In Microsoft Word: go to File > Options > Display and check 'Print background colors and images' under 'Printing options'
  2. 2In Word: if you're using a page color (Design tab), ensure it's set through the actual page background settings, not just a visual theme color
  3. 3In HTML: add CSS rule `* { -webkit-print-color-adjust: exact; print-color-adjust: exact; }` before converting
  4. 4Re-export after making these changes and check if backgrounds are now preserved
  5. 5If the issue persists, try converting as an image-based PDF to capture the visual appearance exactly

Fixing Word Background Colors for PDF Export

Microsoft Word requires a specific setting change to include background colors in PDF output. This is one of the most common sources of confusion because the setting is buried and not intuitive. To enable background color printing in Word: 1. Click File > Options 2. Select 'Display' from the left sidebar 3. Under 'Printing options,' check 'Print background colors and images' 4. Click OK 5. Re-export your document to PDF For documents using the Design tab's page color feature specifically, there's sometimes an additional quirk: Word may export the background as a graphic overlay rather than a true page background, depending on the PDF export settings. If the background still appears missing, try using 'Publish as PDF/XPS' dialog instead of File > Save As, and explore the advanced options for graphics inclusion. Another reliable approach is to use the LazyPDF Word to PDF converter, which processes the Word document through a conversion pipeline specifically tuned to preserve visual formatting including backgrounds.

Fixing HTML Background Colors for PDF Conversion

HTML-to-PDF converters have a variable approach to background colors depending on which CSS rules the rendering engine respects. The CSS property that controls this is `print-color-adjust` (formerly `-webkit-print-color-adjust`). Adding this to your stylesheet tells the conversion engine to preserve background colors even in print/PDF mode: ```css * { print-color-adjust: exact; -webkit-print-color-adjust: exact; } ``` For specific elements, you can apply it more targeted: ```css .colored-section, .header, .sidebar { print-color-adjust: exact; -webkit-print-color-adjust: exact; } ``` If you're using an HTML-to-PDF conversion service and can't add CSS to the source, look for conversion options that specifically mention 'background colors' or 'force background graphics.' LazyPDF's HTML to PDF tool handles background colors correctly when the source HTML includes the print-color-adjust property.

Using Design Elements That Convert Reliably

Some design choices produce PDFs that preserve colors more reliably across all conversion methods: **Use explicit fill colors on shapes**: Instead of relying on page background colors (which may be treated as 'application backgrounds'), create explicit colored rectangles or shapes positioned as the background. These are treated as content, not background, and are much more reliably included in exports. **Use table backgrounds instead of page backgrounds**: In Word, colored table cells and backgrounds convert more reliably than page-level color fills. **Convert to images for guaranteed appearance**: If background preservation is critical, converting each page to an image (with the source application rendering it correctly) and then converting those images to PDF guarantees the visual appearance is preserved. LazyPDF's Image to PDF tool can compile images into a PDF with correct visual appearance. **Test with a single page first**: Before converting a 50-page designed document, export one representative page and verify backgrounds appear correctly. This saves the frustration of discovering the problem only after a full conversion.

Platform-Specific Fixes

**Google Docs**: Google Docs doesn't support page background colors in the traditional sense. If you need a background, use a large colored table row or inserted colored drawing as a workaround. These will convert to PDF correctly. **PowerPoint**: Background designs in PowerPoint (slide backgrounds) typically convert correctly to PDF because PowerPoint treats them as part of the slide content. However, 'Apply to master' backgrounds may behave differently — test before converting a full deck. **LibreOffice Writer**: LibreOffice has its own background printing settings similar to Word. Check Format > Page Style > Background and ensure the settings are correct. Also check Tools > Options > LibreOffice Writer > Print and verify that background printing is enabled. **InDesign/Illustrator**: These professional tools typically convert backgrounds correctly because they treat all colors as document content rather than application decorations. If backgrounds are missing from InDesign exports, check the color management settings.

Frequently Asked Questions

I enabled 'Print background colors' in Word but the PDF still shows a white background. What else can I try?

Try using a different export method. Instead of File > Save As > PDF, use File > Export > Create PDF/XPS and explore the Options button for additional settings. Also verify that the background is defined through Page Color (Design tab > Page Color) rather than a theme color applied to the page — these are handled differently.

Can I add a background color to an existing white PDF without reconverting from source?

Yes, with tools like Adobe Acrobat Pro, you can add a background (Tools > Edit PDF > Background). Free tools have limited options. The most reliable approach is always to fix at the source document level and re-export. If you don't have the source, using a background image in Acrobat Pro is the alternative.

My HTML email converts perfectly in a browser but background colors disappear in PDF. Why the difference?

Browsers apply regular screen CSS. PDF converters apply print CSS rules. Your email template likely has print-suppressed backgrounds. Adding `print-color-adjust: exact` to the CSS forces the PDF converter to respect the background colors just as the browser does.

Will using LazyPDF's Word to PDF converter fix my background colors automatically?

LazyPDF's converter processes documents with settings configured to preserve visual formatting including backgrounds. Results depend on how the background was defined in the source document. For backgrounds defined as page colors or shapes, the conversion typically preserves them. Complex theme-based backgrounds may require the source-level fix described above.

Convert Word or HTML documents to PDF with better color and formatting preservation.

Convert Word to PDF

Related Articles