Footer Incorrect in SharePoint

After creating the footer for my Word document everything appears correct, but when uploaded to SharePoint and using Word (the web version) the footer is aligned incorrectly.

Oddly, the print is still correct and even when viewing in “Reading View” everything appears to be correct. Is there something that can be done to fix the issue when viewing in the online version of Word that I’m missing?

Hi,

Please send us your Word document so we can investigate it.
You can send it to us via email or support ticket, see the Contact page.

Regards,
Mario

The issue was resolved using the latest version of GemBox.Document:

And using the PaginatorOptions.UpdateColumnWidths:

var document = DocumentModel.Load(file);
document.GetPaginator(new PaginatorOptions() { UpdateTableColumnWidths = true });
document.Save(file);