Converting Word to PDF without the layout shifting on you
August 20, 2026 · 4 min read
A resume that looked perfect in Word arrives as a PDF with the bullet points shifted, a heading wrapped onto an extra line, or a table column suddenly narrower than it should be. The document didn't change — but something about turning it into a PDF exposed a difference that was invisible on your own machine.
Why this happens at all
A .docx file doesn't store a fixed page layout the way a PDF does — it stores content plus instructions, and the exact pixel positions get recalculated at the moment of rendering, based on whatever fonts and settings are actually available on the machine doing the rendering. If your Word document uses a font that isn't installed wherever it gets converted, the substitute font takes up a different amount of space, and everything downstream reflows to fit.
What actually causes the most shifting
- A font that isn't a standard system font (a downloaded Google Font, a branded corporate typeface) and isn't embedded in the document itself.
- Tables with columns sized by "auto-fit" rather than a fixed width, which recalculate based on content and available font metrics.
- Text boxes and manually-placed elements, which are positioned relative to the page in ways that behave differently across renderers than normal flowing text.
How Word to PDF handles this here
Word to PDF renders the document directly in your browser using the same layout engine that displays regular web pages, working from the document's own content rather than round-tripping through a copy of Microsoft Word on a server. The output is deterministic for a given input — but it inherits the same underlying constraint every converter has: a font that isn't embedded in the source file and isn't a common system font will be substituted, and that substitution is where visible drift comes from.
Reducing the chance of a shift before you convert
- Stick to fonts that ship with Windows or macOS by default (Calibri, Arial, Times New Roman, Georgia) if the exact layout matters, since these are reliably available wherever the document gets rendered.
- Set table columns to a fixed width rather than auto-fit, so their size doesn't depend on font metrics at render time.
- If you must use a custom font, check whether your word processor can embed it in the .docx file itself — that removes the substitution problem entirely.
Convert a Word document to PDF
Open Word to PDF