How to turn off page breaks in Google Docs? [closed]
Turn off "Print Layout" from the "View" menu.
I also rarely want to print my google docs, and the breaks annoyed me as well.
I installed the Page Sizer add-on from the add-ons menu within google docs, and made the page really long.
The page settings work globally. So your collaborators will also enjoy a page page-break-free experience in google docs, unlike the style-bot solution.
One option is to just double click the page break line and Google will automatically removed them.
For reference: https://www.youtube.com/watch?v=5Qq3KxGHm3g
The solution I came up with was to use the publishing feature.
File > Publish to the web...
Then in the URL you can just replace the .../edit
path with .../pub
This solves the problem described in the question of breaking up a table with footnotes.
The only way to remove the dotted line (to my knowledge) is with css hacking using plugin.
-
Install the User CSS (or User JS & CSS) plugin, which allows adding CSS rules per site.
-
Once on Google Docs, click the plugins icon, toggle the OFF to ON button, and add the following css code:
.
.kix-page-compact::before{
border-top: none;
}
Should work like a charm.