MS Word: "top margin" missing for new documents

trevexcel2

New Member
Joined
Aug 21, 2008
Messages
36
(Windows XP, Office 2003)

Please help, I'm a bit baffled! When I choose {file \ new}, or press ctrl + n, it creates a new blank document as one would expect, using as template {C:\Documents and Settings\ MyUserName\Application Data\Microsoft\Templates\Normal.dot}.

But the first words I type starts right at the top edge of the page, not below a (e.g. 1 inch) top margin. My menu has \ view \ ruler = yes. At the left of the Word editor, the ruler has no grey part at the top left as usually: All of it is white. (Inside a correct document, when I hold the mouse over the edge between the grey and white in the vertical ruler on the left, the yellow tooltip says 'top margin'.)

My {file \ page setup \ margins} all look normal: top margin = 2.54cm (=1 inch), bottom margin = 2.54cm also. The settings are like this for normal.dot also. When I open normal.dot on its own as a template (.dot) file, the first words correctly start below the 1 inch margin. But when I close normal.dot and press ctrl + n again for a new document, the first words are at the top again.

When I choose {view \ header and footer}, so that the cursor goes inside the header, and then toggle {view \ header and footer} off again, the first words indeed now correctly start below the 1 inch margin i.e. for some reason it is now correct. But the problem cannot be because my cursor simply starts off inside the header for a new document: When I'm first type some first words and then edit the header, my first words show outside the header while the cursor is inside the header.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
It now worked when I added this sub to my normal.dot.
But it's not really ideal is it?

Code:
Sub autoNew()
   ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
   ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
End Sub
 
Upvote 0
sounds like you clicked on the space between pages. Nice little feature that makes it look like your top margin is gone.
Move your cursor to the space between pages until it turns into an up/down double arrow. At that point - click. Should "separate" your pages again.
 
Upvote 0
wow, thank you, I had the same problem, and had before. thinking my template was corrupted.
solved the problem WITHIN 2 SECS. THANK YOU
 
Upvote 0

Forum statistics

Threads
1,225,521
Messages
6,185,458
Members
453,292
Latest member
Michandra02

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top