Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Shift all content on every page down 5mm OR adjust bleed settings?

New Here ,
Feb 26, 2020 Feb 26, 2020

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

TOPICS
How to , Import and export , Print
14.2K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Feb 26, 2020 Feb 26, 2020

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.

 

MoveEverythingDown-on-Doc-Pages-1.PNG

 

Result:

MoveEverythingDown-on-Doc-Pages-2.PNG

 

The other way is to use a script that moves every item down. Also items off pages and items on t

...
Translate
Community Expert ,
Feb 26, 2020 Feb 26, 2020

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.

 

MoveEverythingDown-on-Doc-Pages-1.PNG

 

Result:

MoveEverythingDown-on-Doc-Pages-2.PNG

 

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"

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Apr 08, 2022 Apr 08, 2022

This is great, but why can you only move things vertically and not horizontally using the Page Tool?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 08, 2022 Apr 08, 2022

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 )

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 08, 2022 Apr 08, 2022

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 )

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 26, 2020 Feb 26, 2020

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.

If the answer wasn't in my post, perhaps it might be on my blog at colecandoo!
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Apr 08, 2022 Apr 08, 2022

Re. AdjustLayout.jsx, be aware that odd = even and even = odd. Took me a while to figure out what was going wrong!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 02, 2024 Jul 02, 2024
LATEST

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! 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 26, 2020 Feb 26, 2020

Thank you!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines