Copy link to clipboard
Copied
I am working on a 5" x 8" book that has a 5.125" x 8.25" trim size with the printer.
For bleed settings, then, I have 0.125" (3.175mm) on the top, bottom, and outside, and 0.0" bleed on the inside.
My book has some special circumstances (replicating something that needs to remain a certain size because it is "real" size), so I don't have flexibility really in terms of the total size my content takes up. Including my page numbers, I currently have about 5mm of space at the top above the page numbers and 13mm of space at the bottom below the text. However, after a couple draft prints, I realized that there is some fluctuation in the cut so that in some prints I get 1mm of space at the top and then about 18mm of space at the bottom.
I am trying to figure out what the easiest way would be to basically move all the content of every single page (images/text/etc.) down about 3-4mm so then I can have around 8-9mm at the top and then 10mm at the bottom.
I thought maybe I should just set the bleed at the bottom to 0mm and set the bleed at the top to 6.35mm, but that seems like a not ideal way to do it.
So my question is: Is there an easy wa
Hi,
the fastest way to move everything on document pages down by e.g. 3.5 mm is to move the document pages up without moving objects with the pages. To select all pages switch to the Page Tool and do Select All with the keyboard shortcut. Then add -3.5 to the existing value in the input field of Y of the Control Panel.
From my German InDesign 2020 where the Control Panel is visible.
Result:
The other way is to use a script that moves every item down. Also items off pages and items on t
...Copy link to clipboard
Copied
Hi,
the fastest way to move everything on document pages down by e.g. 3.5 mm is to move the document pages up without moving objects with the pages. To select all pages switch to the Page Tool and do Select All with the keyboard shortcut. Then add -3.5 to the existing value in the input field of Y of the Control Panel.
From my German InDesign 2020 where the Control Panel is visible.
Result:
The other way is to use a script that moves every item down. Also items off pages and items on the master.
ExtendScript (JavaScript) code:
app.documents[0].pageItems.everyItem().move( undefined , [ "0 mm" , "3.5 mm"] );
Regards,
Uwe Laubender
( ACP )
EDITED: Changed "down" to "up"
Copy link to clipboard
Copied
This is great, but why can you only move things vertically and not horizontally using the Page Tool?
Copy link to clipboard
Copied
Hi Dan,
that's the way it works with facing-pages documents.
With non-facing-pages documents you can move a page with the Page tool in both directions.
You even can overlap pages with other pages.
Regards,
Uwe Laubender
( ACP )
Copy link to clipboard
Copied
Basically that was a design decision back in the development stage with InDesign CS5 about 10 years ago. When the first time it was possible to change the size of indivudal pages and the Page tool had its appearance. A big step in the development of InDesign.
FWIW: With facing-pages documents every page must be either glued vertically horizontally to the spine or a different page of one of the sides of the spine.
Regards,
Uwe Laubender
( ACP )
Copy link to clipboard
Copied
In addition to the script shared by Uwe, there is also a script that ships with InDesign called AdjustLayout.jsx that can adjust all items on a page en masse.
Copy link to clipboard
Copied
Re. AdjustLayout.jsx, be aware that odd = even and even = odd. Took me a while to figure out what was going wrong!
Copy link to clipboard
Copied
Yes, this Script is awesome. The beauty of this script is you can make adjustments to the Left page of your spread a different amount than the adjustment of the right page of your spread. This allows you, to for instance, add more space on the inside of your spread to allow for the fold of the stiching/spine area. Thanks for sharing!
Copy link to clipboard
Copied
Thank you!
Find more inspiration, events, and resources on the new Adobe Community
Explore Now