How do I show the page margin in Word 2016?












0















Using Word 2016 (and apparently 2013, and 365), there is no longer an option for showing a page's text boundaries. Rather it defaults to essentially paragraph boundaries. How can I get my page's text boundaries (i.e. margins) displayed again?



According to this site and this site Microsoft, in their infinite wisdom, has declared this beloved, long-standing feature a bug, and fixed it in their recent editions (with no apparent intention of returning).



You can visit here to try and convince Microsoft to correct this egregious offense.



And no Google, the page margins/text boundaries are not the same as the guides/rulers.










share|improve this question





























    0















    Using Word 2016 (and apparently 2013, and 365), there is no longer an option for showing a page's text boundaries. Rather it defaults to essentially paragraph boundaries. How can I get my page's text boundaries (i.e. margins) displayed again?



    According to this site and this site Microsoft, in their infinite wisdom, has declared this beloved, long-standing feature a bug, and fixed it in their recent editions (with no apparent intention of returning).



    You can visit here to try and convince Microsoft to correct this egregious offense.



    And no Google, the page margins/text boundaries are not the same as the guides/rulers.










    share|improve this question



























      0












      0








      0








      Using Word 2016 (and apparently 2013, and 365), there is no longer an option for showing a page's text boundaries. Rather it defaults to essentially paragraph boundaries. How can I get my page's text boundaries (i.e. margins) displayed again?



      According to this site and this site Microsoft, in their infinite wisdom, has declared this beloved, long-standing feature a bug, and fixed it in their recent editions (with no apparent intention of returning).



      You can visit here to try and convince Microsoft to correct this egregious offense.



      And no Google, the page margins/text boundaries are not the same as the guides/rulers.










      share|improve this question
















      Using Word 2016 (and apparently 2013, and 365), there is no longer an option for showing a page's text boundaries. Rather it defaults to essentially paragraph boundaries. How can I get my page's text boundaries (i.e. margins) displayed again?



      According to this site and this site Microsoft, in their infinite wisdom, has declared this beloved, long-standing feature a bug, and fixed it in their recent editions (with no apparent intention of returning).



      You can visit here to try and convince Microsoft to correct this egregious offense.



      And no Google, the page margins/text boundaries are not the same as the guides/rulers.







      microsoft-word microsoft-word-2013 microsoft-word-2016






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jan 18 '18 at 20:25







      dav

















      asked Jan 18 '18 at 20:19









      davdav

      7,67532043




      7,67532043






















          4 Answers
          4






          active

          oldest

          votes


















          0














          One possible work-around, using grid lines:




          1. Layout > Align > Grid Settings


          2. Set grid settings (assuming 8 1/2" x 11" paper with 1" margins):




            • Horizontal spacing 6.5"

            • Vertical spacing 8.99"

            • Check Display gridlines on screen

            • Vertical every 1

            • Horizontal every 1



          3. Click OK







          share|improve this answer

































            0














            Here is my macro lifehack that makes use of the gridlines to display text boundaries in the pre-2013 style. The macro switches boundaries on/off.



            The produced boundaries are a bit improved: they extend at the full page width and height, crossing in the corners. If you like boundaries that look just like a rectangle, like it was in Office before 2013, remove ' at the start of this line:





            ' ActiveDocument.GridOriginFromMargin = True


            Downside: There will be the same boundaries for the whole document, so if you have multiple sections with different size margins, their boundaries will be like those of the section that is current at the moment when you run the macro.



            The macro:



            Sub view_page_boundaries()
            ' provide page boundaries using a customised page grid
            With Selection
            ActiveDocument.GridOriginFromMargin = False
            ' uncomment to have page boundaries like standard for pre-2013
            ' ActiveDocument.GridOriginFromMargin = True
            If ActiveDocument.GridOriginFromMargin = False Then
            ' display crossing boundaries at full width and height
            ActiveDocument.GridDistanceHorizontal = .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin
            ActiveDocument.GridDistanceVertical = .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin
            Else
            ' display boundaries like those in pre-2013
            ' 0.05 is half-millimeter to prevent cutting off the right and bottom boundaries by the margins
            ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(Round(PointsToCentimeters( _
            .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin), 1) - 0.05)
            ActiveDocument.GridDistanceVertical = CentimetersToPoints(Round(PointsToCentimeters( _
            .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin), 1) - 0.05)
            ActiveDocument.GridOriginHorizontal = .PageSetup.LeftMargin + .PageSetup.Gutter
            ActiveDocument.GridOriginVertical = .PageSetup.TopMargin
            End If
            If Options.DisplayGridLines = False Then
            Options.DisplayGridLines = True
            ' do not need cropmarks at all with crossing boundaries
            ActiveWindow.View.ShowCropMarks = False
            ActiveDocument.GridSpaceBetweenHorizontalLines = 1
            ActiveDocument.GridSpaceBetweenVerticalLines = 1
            Else
            ActiveDocument.GridOriginFromMargin = True
            ' display cropmarks when there are no boundaries
            ActiveWindow.View.ShowCropMarks = True
            ActiveDocument.GridSpaceBetweenHorizontalLines = 2
            ActiveDocument.GridSpaceBetweenVerticalLines = 2
            ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(0.18)
            ActiveDocument.GridDistanceVertical = CentimetersToPoints(0.32)
            End If
            End With
            End Sub





            share|improve this answer

































              0














              Thanks to bagwell005, I found a variation that works for my purposes. I went to File>Options>Advanced. Under "Show document content" I selected "Show crop marks." IMHO, this provides a workable sense of the margins. I hope it helps!






              share|improve this answer































                -1














                text boundaries are located here--> File>Options>Advanced..scroll down a bit to "Show document content" Simply check the "Show text boundaries" and enjoy the mess, they're not the same as previous versions of Word :(






                share|improve this answer
























                • ‘‘they’re not the same as previous versions of Word’’.  Yes, that’s exactly the point that the question is making — ‘‘it defaults to essentially paragraph boundaries’’. Sure, it would have been nice if the question had mentioned how to access the function, but your post is not an answer.

                  – Scott
                  Oct 20 '18 at 4:11











                Your Answer








                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "3"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1286876%2fhow-do-i-show-the-page-margin-in-word-2016%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                4 Answers
                4






                active

                oldest

                votes








                4 Answers
                4






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                0














                One possible work-around, using grid lines:




                1. Layout > Align > Grid Settings


                2. Set grid settings (assuming 8 1/2" x 11" paper with 1" margins):




                  • Horizontal spacing 6.5"

                  • Vertical spacing 8.99"

                  • Check Display gridlines on screen

                  • Vertical every 1

                  • Horizontal every 1



                3. Click OK







                share|improve this answer






























                  0














                  One possible work-around, using grid lines:




                  1. Layout > Align > Grid Settings


                  2. Set grid settings (assuming 8 1/2" x 11" paper with 1" margins):




                    • Horizontal spacing 6.5"

                    • Vertical spacing 8.99"

                    • Check Display gridlines on screen

                    • Vertical every 1

                    • Horizontal every 1



                  3. Click OK







                  share|improve this answer




























                    0












                    0








                    0







                    One possible work-around, using grid lines:




                    1. Layout > Align > Grid Settings


                    2. Set grid settings (assuming 8 1/2" x 11" paper with 1" margins):




                      • Horizontal spacing 6.5"

                      • Vertical spacing 8.99"

                      • Check Display gridlines on screen

                      • Vertical every 1

                      • Horizontal every 1



                    3. Click OK







                    share|improve this answer















                    One possible work-around, using grid lines:




                    1. Layout > Align > Grid Settings


                    2. Set grid settings (assuming 8 1/2" x 11" paper with 1" margins):




                      • Horizontal spacing 6.5"

                      • Vertical spacing 8.99"

                      • Check Display gridlines on screen

                      • Vertical every 1

                      • Horizontal every 1



                    3. Click OK








                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Sep 7 '18 at 0:52









                    phuclv

                    9,26363990




                    9,26363990










                    answered Jan 18 '18 at 20:33









                    davdav

                    7,67532043




                    7,67532043

























                        0














                        Here is my macro lifehack that makes use of the gridlines to display text boundaries in the pre-2013 style. The macro switches boundaries on/off.



                        The produced boundaries are a bit improved: they extend at the full page width and height, crossing in the corners. If you like boundaries that look just like a rectangle, like it was in Office before 2013, remove ' at the start of this line:





                        ' ActiveDocument.GridOriginFromMargin = True


                        Downside: There will be the same boundaries for the whole document, so if you have multiple sections with different size margins, their boundaries will be like those of the section that is current at the moment when you run the macro.



                        The macro:



                        Sub view_page_boundaries()
                        ' provide page boundaries using a customised page grid
                        With Selection
                        ActiveDocument.GridOriginFromMargin = False
                        ' uncomment to have page boundaries like standard for pre-2013
                        ' ActiveDocument.GridOriginFromMargin = True
                        If ActiveDocument.GridOriginFromMargin = False Then
                        ' display crossing boundaries at full width and height
                        ActiveDocument.GridDistanceHorizontal = .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin
                        ActiveDocument.GridDistanceVertical = .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin
                        Else
                        ' display boundaries like those in pre-2013
                        ' 0.05 is half-millimeter to prevent cutting off the right and bottom boundaries by the margins
                        ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(Round(PointsToCentimeters( _
                        .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin), 1) - 0.05)
                        ActiveDocument.GridDistanceVertical = CentimetersToPoints(Round(PointsToCentimeters( _
                        .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin), 1) - 0.05)
                        ActiveDocument.GridOriginHorizontal = .PageSetup.LeftMargin + .PageSetup.Gutter
                        ActiveDocument.GridOriginVertical = .PageSetup.TopMargin
                        End If
                        If Options.DisplayGridLines = False Then
                        Options.DisplayGridLines = True
                        ' do not need cropmarks at all with crossing boundaries
                        ActiveWindow.View.ShowCropMarks = False
                        ActiveDocument.GridSpaceBetweenHorizontalLines = 1
                        ActiveDocument.GridSpaceBetweenVerticalLines = 1
                        Else
                        ActiveDocument.GridOriginFromMargin = True
                        ' display cropmarks when there are no boundaries
                        ActiveWindow.View.ShowCropMarks = True
                        ActiveDocument.GridSpaceBetweenHorizontalLines = 2
                        ActiveDocument.GridSpaceBetweenVerticalLines = 2
                        ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(0.18)
                        ActiveDocument.GridDistanceVertical = CentimetersToPoints(0.32)
                        End If
                        End With
                        End Sub





                        share|improve this answer






























                          0














                          Here is my macro lifehack that makes use of the gridlines to display text boundaries in the pre-2013 style. The macro switches boundaries on/off.



                          The produced boundaries are a bit improved: they extend at the full page width and height, crossing in the corners. If you like boundaries that look just like a rectangle, like it was in Office before 2013, remove ' at the start of this line:





                          ' ActiveDocument.GridOriginFromMargin = True


                          Downside: There will be the same boundaries for the whole document, so if you have multiple sections with different size margins, their boundaries will be like those of the section that is current at the moment when you run the macro.



                          The macro:



                          Sub view_page_boundaries()
                          ' provide page boundaries using a customised page grid
                          With Selection
                          ActiveDocument.GridOriginFromMargin = False
                          ' uncomment to have page boundaries like standard for pre-2013
                          ' ActiveDocument.GridOriginFromMargin = True
                          If ActiveDocument.GridOriginFromMargin = False Then
                          ' display crossing boundaries at full width and height
                          ActiveDocument.GridDistanceHorizontal = .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin
                          ActiveDocument.GridDistanceVertical = .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin
                          Else
                          ' display boundaries like those in pre-2013
                          ' 0.05 is half-millimeter to prevent cutting off the right and bottom boundaries by the margins
                          ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(Round(PointsToCentimeters( _
                          .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin), 1) - 0.05)
                          ActiveDocument.GridDistanceVertical = CentimetersToPoints(Round(PointsToCentimeters( _
                          .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin), 1) - 0.05)
                          ActiveDocument.GridOriginHorizontal = .PageSetup.LeftMargin + .PageSetup.Gutter
                          ActiveDocument.GridOriginVertical = .PageSetup.TopMargin
                          End If
                          If Options.DisplayGridLines = False Then
                          Options.DisplayGridLines = True
                          ' do not need cropmarks at all with crossing boundaries
                          ActiveWindow.View.ShowCropMarks = False
                          ActiveDocument.GridSpaceBetweenHorizontalLines = 1
                          ActiveDocument.GridSpaceBetweenVerticalLines = 1
                          Else
                          ActiveDocument.GridOriginFromMargin = True
                          ' display cropmarks when there are no boundaries
                          ActiveWindow.View.ShowCropMarks = True
                          ActiveDocument.GridSpaceBetweenHorizontalLines = 2
                          ActiveDocument.GridSpaceBetweenVerticalLines = 2
                          ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(0.18)
                          ActiveDocument.GridDistanceVertical = CentimetersToPoints(0.32)
                          End If
                          End With
                          End Sub





                          share|improve this answer




























                            0












                            0








                            0







                            Here is my macro lifehack that makes use of the gridlines to display text boundaries in the pre-2013 style. The macro switches boundaries on/off.



                            The produced boundaries are a bit improved: they extend at the full page width and height, crossing in the corners. If you like boundaries that look just like a rectangle, like it was in Office before 2013, remove ' at the start of this line:





                            ' ActiveDocument.GridOriginFromMargin = True


                            Downside: There will be the same boundaries for the whole document, so if you have multiple sections with different size margins, their boundaries will be like those of the section that is current at the moment when you run the macro.



                            The macro:



                            Sub view_page_boundaries()
                            ' provide page boundaries using a customised page grid
                            With Selection
                            ActiveDocument.GridOriginFromMargin = False
                            ' uncomment to have page boundaries like standard for pre-2013
                            ' ActiveDocument.GridOriginFromMargin = True
                            If ActiveDocument.GridOriginFromMargin = False Then
                            ' display crossing boundaries at full width and height
                            ActiveDocument.GridDistanceHorizontal = .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin
                            ActiveDocument.GridDistanceVertical = .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin
                            Else
                            ' display boundaries like those in pre-2013
                            ' 0.05 is half-millimeter to prevent cutting off the right and bottom boundaries by the margins
                            ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(Round(PointsToCentimeters( _
                            .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin), 1) - 0.05)
                            ActiveDocument.GridDistanceVertical = CentimetersToPoints(Round(PointsToCentimeters( _
                            .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin), 1) - 0.05)
                            ActiveDocument.GridOriginHorizontal = .PageSetup.LeftMargin + .PageSetup.Gutter
                            ActiveDocument.GridOriginVertical = .PageSetup.TopMargin
                            End If
                            If Options.DisplayGridLines = False Then
                            Options.DisplayGridLines = True
                            ' do not need cropmarks at all with crossing boundaries
                            ActiveWindow.View.ShowCropMarks = False
                            ActiveDocument.GridSpaceBetweenHorizontalLines = 1
                            ActiveDocument.GridSpaceBetweenVerticalLines = 1
                            Else
                            ActiveDocument.GridOriginFromMargin = True
                            ' display cropmarks when there are no boundaries
                            ActiveWindow.View.ShowCropMarks = True
                            ActiveDocument.GridSpaceBetweenHorizontalLines = 2
                            ActiveDocument.GridSpaceBetweenVerticalLines = 2
                            ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(0.18)
                            ActiveDocument.GridDistanceVertical = CentimetersToPoints(0.32)
                            End If
                            End With
                            End Sub





                            share|improve this answer















                            Here is my macro lifehack that makes use of the gridlines to display text boundaries in the pre-2013 style. The macro switches boundaries on/off.



                            The produced boundaries are a bit improved: they extend at the full page width and height, crossing in the corners. If you like boundaries that look just like a rectangle, like it was in Office before 2013, remove ' at the start of this line:





                            ' ActiveDocument.GridOriginFromMargin = True


                            Downside: There will be the same boundaries for the whole document, so if you have multiple sections with different size margins, their boundaries will be like those of the section that is current at the moment when you run the macro.



                            The macro:



                            Sub view_page_boundaries()
                            ' provide page boundaries using a customised page grid
                            With Selection
                            ActiveDocument.GridOriginFromMargin = False
                            ' uncomment to have page boundaries like standard for pre-2013
                            ' ActiveDocument.GridOriginFromMargin = True
                            If ActiveDocument.GridOriginFromMargin = False Then
                            ' display crossing boundaries at full width and height
                            ActiveDocument.GridDistanceHorizontal = .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin
                            ActiveDocument.GridDistanceVertical = .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin
                            Else
                            ' display boundaries like those in pre-2013
                            ' 0.05 is half-millimeter to prevent cutting off the right and bottom boundaries by the margins
                            ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(Round(PointsToCentimeters( _
                            .PageSetup.PageWidth - .PageSetup.LeftMargin - .PageSetup.Gutter - .PageSetup.RightMargin), 1) - 0.05)
                            ActiveDocument.GridDistanceVertical = CentimetersToPoints(Round(PointsToCentimeters( _
                            .PageSetup.PageHeight - .PageSetup.TopMargin - .PageSetup.BottomMargin), 1) - 0.05)
                            ActiveDocument.GridOriginHorizontal = .PageSetup.LeftMargin + .PageSetup.Gutter
                            ActiveDocument.GridOriginVertical = .PageSetup.TopMargin
                            End If
                            If Options.DisplayGridLines = False Then
                            Options.DisplayGridLines = True
                            ' do not need cropmarks at all with crossing boundaries
                            ActiveWindow.View.ShowCropMarks = False
                            ActiveDocument.GridSpaceBetweenHorizontalLines = 1
                            ActiveDocument.GridSpaceBetweenVerticalLines = 1
                            Else
                            ActiveDocument.GridOriginFromMargin = True
                            ' display cropmarks when there are no boundaries
                            ActiveWindow.View.ShowCropMarks = True
                            ActiveDocument.GridSpaceBetweenHorizontalLines = 2
                            ActiveDocument.GridSpaceBetweenVerticalLines = 2
                            ActiveDocument.GridDistanceHorizontal = CentimetersToPoints(0.18)
                            ActiveDocument.GridDistanceVertical = CentimetersToPoints(0.32)
                            End If
                            End With
                            End Sub






                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Sep 21 '18 at 15:44

























                            answered Sep 21 '18 at 14:59









                            hoonosehoonose

                            11




                            11























                                0














                                Thanks to bagwell005, I found a variation that works for my purposes. I went to File>Options>Advanced. Under "Show document content" I selected "Show crop marks." IMHO, this provides a workable sense of the margins. I hope it helps!






                                share|improve this answer




























                                  0














                                  Thanks to bagwell005, I found a variation that works for my purposes. I went to File>Options>Advanced. Under "Show document content" I selected "Show crop marks." IMHO, this provides a workable sense of the margins. I hope it helps!






                                  share|improve this answer


























                                    0












                                    0








                                    0







                                    Thanks to bagwell005, I found a variation that works for my purposes. I went to File>Options>Advanced. Under "Show document content" I selected "Show crop marks." IMHO, this provides a workable sense of the margins. I hope it helps!






                                    share|improve this answer













                                    Thanks to bagwell005, I found a variation that works for my purposes. I went to File>Options>Advanced. Under "Show document content" I selected "Show crop marks." IMHO, this provides a workable sense of the margins. I hope it helps!







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Oct 17 '18 at 17:23









                                    Hummingbird008Hummingbird008

                                    11




                                    11























                                        -1














                                        text boundaries are located here--> File>Options>Advanced..scroll down a bit to "Show document content" Simply check the "Show text boundaries" and enjoy the mess, they're not the same as previous versions of Word :(






                                        share|improve this answer
























                                        • ‘‘they’re not the same as previous versions of Word’’.  Yes, that’s exactly the point that the question is making — ‘‘it defaults to essentially paragraph boundaries’’. Sure, it would have been nice if the question had mentioned how to access the function, but your post is not an answer.

                                          – Scott
                                          Oct 20 '18 at 4:11
















                                        -1














                                        text boundaries are located here--> File>Options>Advanced..scroll down a bit to "Show document content" Simply check the "Show text boundaries" and enjoy the mess, they're not the same as previous versions of Word :(






                                        share|improve this answer
























                                        • ‘‘they’re not the same as previous versions of Word’’.  Yes, that’s exactly the point that the question is making — ‘‘it defaults to essentially paragraph boundaries’’. Sure, it would have been nice if the question had mentioned how to access the function, but your post is not an answer.

                                          – Scott
                                          Oct 20 '18 at 4:11














                                        -1












                                        -1








                                        -1







                                        text boundaries are located here--> File>Options>Advanced..scroll down a bit to "Show document content" Simply check the "Show text boundaries" and enjoy the mess, they're not the same as previous versions of Word :(






                                        share|improve this answer













                                        text boundaries are located here--> File>Options>Advanced..scroll down a bit to "Show document content" Simply check the "Show text boundaries" and enjoy the mess, they're not the same as previous versions of Word :(







                                        share|improve this answer












                                        share|improve this answer



                                        share|improve this answer










                                        answered Sep 6 '18 at 21:25









                                        bagwell005bagwell005

                                        1




                                        1













                                        • ‘‘they’re not the same as previous versions of Word’’.  Yes, that’s exactly the point that the question is making — ‘‘it defaults to essentially paragraph boundaries’’. Sure, it would have been nice if the question had mentioned how to access the function, but your post is not an answer.

                                          – Scott
                                          Oct 20 '18 at 4:11



















                                        • ‘‘they’re not the same as previous versions of Word’’.  Yes, that’s exactly the point that the question is making — ‘‘it defaults to essentially paragraph boundaries’’. Sure, it would have been nice if the question had mentioned how to access the function, but your post is not an answer.

                                          – Scott
                                          Oct 20 '18 at 4:11

















                                        ‘‘they’re not the same as previous versions of Word’’.  Yes, that’s exactly the point that the question is making — ‘‘it defaults to essentially paragraph boundaries’’. Sure, it would have been nice if the question had mentioned how to access the function, but your post is not an answer.

                                        – Scott
                                        Oct 20 '18 at 4:11





                                        ‘‘they’re not the same as previous versions of Word’’.  Yes, that’s exactly the point that the question is making — ‘‘it defaults to essentially paragraph boundaries’’. Sure, it would have been nice if the question had mentioned how to access the function, but your post is not an answer.

                                        – Scott
                                        Oct 20 '18 at 4:11


















                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Super User!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1286876%2fhow-do-i-show-the-page-margin-in-word-2016%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                                        Mangá

                                         ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕