Shifting the Position of Everything Across a Page

I have a book consisting of about 15 chapter files. Due to technical changes outside my control, I need to shift the margins, my ruler makes and all the contents of the left pages only about 1/4" outwards.
What is the easiest way to do this?

Make backup copies of everything first, just in case.
Then go to Layout > Layout Adjustment... and turn on Layout Adjustment. If the text frames are currenly sanpped to the margin guides you're golden, otherwise you need to make two adjustments.
On the master page, if the frames are already snapped to the guides, go to Layout > Margins and Columns and just reset the margins. The frames will move. If the frames are not snapped to the guides, you need to first move the margins so they correspond to the frame edges, then move them where you want. Other master items may need to be moved on the master pages, and objects that don't snap on guides onthe document pages will need to be dealt with individually, but layout adjustment should get you most of the way there.

Similar Messages

  • I need to set the position of components on a page that contains a MenuBar,

    I need to set the position of components on a page that contains a MenuBar, but MenuBar does not provide a getPreferred size method.
    How can I get the MenuBar's size in AWT?
    Thanks.

    A menubar is not a general component that is added to a frame like any another. It is the specific responsibility of the setMenuBar/setJMenuBar methods to deal with this.

  • How can i get the footer bar to stay, whilst page scrolls?

    how can i get the footer bar to stay, whilst page scrolls?
    at the moment, on my site, if the page is longer than the screen, it goes behind the footer,
    but the foot bar moves up the page as yo scroll down to see the rest of the content.
    any way of getting the footer to stay put, while body/page contant scrolls ?
    thanks

    You can use some css to do it...
    #footer_id {
         position:fixed;
         bottom:0px;
    <div id="footer_id">Your footer content</div>
    The css above will lock your footer to the bottome of the browser window. As long as your footer <div> is last in your html, it will float over the top of everything on your page when the page is scrolled. If it's not last in the html, you'll need to add a z-index to get it on top of your other content in the stack.

  • Read out loud isn't following tag structure across multiple pages

    I have an InDesign CC document where the main story falls across several pages. It wraps around a standalone sidebar that fits one page, as well as another sidebar that also jumps to other pages. I set up the element order in the Articles palette, and it looks like the structure is set to read the main story first in its entirety, then move on through the sidebars, each in its entirety.
    In Acrobat CC, I set the tab order to use the document structure within Page Thumbnails, and took the other required steps. The accessibility check comes up clean.
    However, Read Out Loud reads everything on one page, then moves to the next page. It ignores the InDesign structure. The Acrobat tags window also shows my desired reading order, but it's not being followed.
    Is there something else I need to do, or is this reading order just not possible?

    Assistive Technology (AT) uses the PDF's structure tree. Without a well-formed structure tree AT will "see" a PDF as a lump of coal.
    What's that got to do with ROL? ROL is *not* AT.  ROL is a nice but simple text to speech feature. ROL parses PDF page content left to right top down for western languages. The PDF does not have to be a tagged PDF for ROL to parse the PDF page content (I've been using it to do that snce Acrobat 8 Pro). In sum - Acrobat / Reader ROL only processes through what is renderable text on the PDF page. PDF elements (tags) exist separately from both the logical structure of a PDF and the PDF's page content (discussed in ISO 32000-1, see 14.8).
    So, nothing wrong or broken. ROL is doing what it was designed to do.
    Try NVDA if you want to parse the structure tree and have the associated content "spoken" to you. I suspect you'll be pleased.
    Be well...
    Message was edited by: CtDave

  • Preview displays PDF with "COPY" written across each page

    Canon's saving money by no longer including the User Guide with some of their camera's such as the Canon A1100 IS:
    If I go to the canon site:
    http://www.usa.canon.com/consumer/controller?act=ModelInfoAct&fcategoryid=183&mo delid=18138#DownloadDetailAct
    ... I can download the User Guide as a PDF from here:
    http://gdlp01.c-wss.com/gds/6/0300001856/01/PSA1100ISCUGEN.pdf
    In Preview 5.0.1 (503), every page of the manual has the word "COPY" written across every page, which interferes with legibility.
    If I open the same PSA1100ISCUGEN.pdf file in Acrobat Pro 9, then the word "COPY" is no longer displayed.
    However if I go to print the manual from Acrobat Pro 9, then the preview in the Print Dialog shows the word "COPY" across each page to be printed.
    So whether I use OS X's Preview.app, or Acrobat Pro 9, they both share the same printing subsystem which wants to print "COPY" across every page.
    BTW Preview.app's "Show Inspector" identifies the Canon User Guide as protected, but with Printing privileges.
    Any guidance on how to print the Canon User Guide without the word "COPY" across every page? Any thoughts on why Preview.app displays the word "COPY" onscreen, while Adobe Acrobat 9 does not? Any thoughts on whether there's a way around the common OS X printing subsystem that both sit on, wanting to print "COPY" across every page?
    PS. I'm using an Canon IP5000 ink jet, but the behavior seems the same if I'm pointing to my office's Kyocera Postscript printer.

    Search for the manual on the european site http://canon-europe.com/ - the versions there (at least for the A1100 IS) do not have the annoying COPY watermark.
    The direct link for the A1100 IS manual is http://files.canon-europe.com/files/soft32765/manual/PSA1100isCUGEN.pdf
    Thanks to a post on dpreview for the hint - http://forums.dpreview.com/forums/read.asp?forum=1010&message=34633050
    -dh

  • Maintaining Transactions Across JSP Pages

    Hi,
    I have a multi page Registration (3 steps). On each step data submitted is taken
    to the database via an EJB component (Session Bean). How do I maintain a transaction
    across these JSP pages (i.e. either in the EJB or in the jsp) so that the data
    in the database is consistent? So if there is a problem in the 3rd step the data
    submitted in the first two steps should be rolled back.
    Can I use a statefull session beans, which will maintain a database connection
    created during the first step, so that I can use the same connection for steps
    2 & 3. In the first step after getting the database connection I will begin a
    transaction and insert the first part of the data, then this connection will be
    maintained by the statefull session and used for steps 2 & 3. At the end I will
    commit the transaction. Will this work?
    How do I maintain transaction across multiple pages? Is there is any standards
    for this scenario where the transaction is maintained across multiple pages. I
    cannot carry data across the jsp pages because of the complex data collected.
    Any help appreciated.
    Regards
    -MohanRaj

    You can not and should not do it the way that you are proposing. Keeping a transaction
    open across any interaction with the user is a big mistake. Transactions are scarce
    resources. They need to be short. You will need to collect the data from the three
    pages in the servlet itself. You can use the HTTPSession, or hidden fields in
    the forms. Only after all of the data is collected should you begin a transaction
    and update the database. Alternatively, you could store the partial data in a
    temporary database table, and move it to a permanent table when all of the data
    has been provided.

  • Hiding SWF Sound Control & Spanning Loop Across Site Pages

    Hi All,
    New here and first post with two questions:
    Is it possible to hide the play/stop SWF sound control on a
    page? I have one on a page and the client doesn't want it visible
    on the page. They want the music loop to always play. I have looked
    and can't find a way to set its property to
    &quot;invisible&quot; or anything like that.
    Second question, related somewhat to the first. They want the
    loop to play across all pages on a site and not be interrupted or
    restarted on page changes (which would happen if I embedded on
    every page). Is that possible? Just a thought...could I put it in a
    CSS sheet that applies to the entire site? Doubt it...but thought
    it would be a desireable goal ;)

    I seem to have the same problem. The sound would play in some programs, would not in others, and in all of them when I stop playing, it would repeat the last half second endlessly. Could anybody shed some light on this problem?
    in dmesg:
    AC'97 1 does not respond - RESET
    AC'97 1 access is not valid [0xffffffff], removing mixer.
    ali mixer 1 creating error.
    and in errors.log:
    May 13 09:14:22 aconarch ali15x3_smbus 0000:00:06.0: ALI15X3_smb region uninitialized - upgrade BIOS or use force_addr=0xaddr
    May 13 09:14:22 aconarch ali15x3_smbus 0000:00:06.0: ALI15X3 not detected, module not inserted.
    May 13 09:14:22 aconarch AC'97 1 access is not valid [0xffffffff], removing mixer.
    May 13 09:14:22 aconarch ali mixer 1 creating error.
    EDIT: 'lsmod | grep snd'
    snd_seq_oss 29056 0
    snd_seq_midi_event 6528 1 snd_seq_oss
    snd_seq 46800 4 snd_seq_oss,snd_seq_midi_event
    snd_seq_device 6796 2 snd_seq_oss,snd_seq
    snd_pcm_oss 38816 0
    snd_mixer_oss 14336 1 snd_pcm_oss
    snd_ali5451 19212 1
    snd_ac97_codec 95396 1 snd_ali5451
    ac97_bus 2432 1 snd_ac97_codec
    snd_pcm 68484 3 snd_pcm_oss,snd_ali5451,snd_ac97_codec
    snd_timer 19076 2 snd_seq,snd_pcm
    snd 44388 11 snd_seq_oss,snd_seq,snd_seq_device,snd_pcm_oss,snd_mixer_oss,snd_ali5451,snd_ac97_codec,snd_pcm,snd_timer
    soundcore 6496 1 snd
    snd_page_alloc 7816 1 snd_pcm
    Last edited by bender02 (2007-05-13 15:41:04)

  • How can I re-arrange the pages in a Pages document now?? I used to be able to click on the thumbnails and shift their position which is important in creating documents.  Any ideas?

    How can I re-arrange the pages in a Pages document now?? I used to be able to click on the thumbnails and shift their position which is important in creating documents.  Any ideas?

    This feature has been removed from Pages 5 along with over 90 others:
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&mforum=iworktipsn trick
    Pages '09 is still in your Applications/iWork folder.
    Trash/archive Pages 5 and rate/review it in the App Store.
    Peter

  • How do I increase the font size on Mozilla--for everything including home page and all my emails?

    I think I have asked the question as best I can. On Internet Explorer, I could click on the lower right and change from 100% to 150%.
    Given my eyesight, this change would be enormously helpful.

    Hi dsbloom65,
    You can try using [https://support.mozilla.org/en-US/kb/how-do-i-use-zoom Zoom]. This will increase/decrease the size of everything on the page. You can try hitting ''CTRL and +'' a few times to try it out. ''CTRL and 0'' will return it to normal size.
    If that isn't what you are looking for you, you might want to look into some of the [[Accessibility]] options. There is lots of good information in that article.
    Hopefully this helps!

  • How do I globally change the font across all pages in a multi-page PDF document

    I have a 500 page document. I suceeded in changing only the font on the first page using Acrobat Pro and selecting "Edit Text and Images", selecting "All" on the first page and changing the font.  It worked perfectly.  Now I want to apply that font change to the remaining 499 pages. Any ideas?

    Sorry Bill, not how it works. You can select text across a page boundary using the normal multi-select tool for copying, but you cannot edit across a page boundary. If you try to activate the ETI tool from the Content Editing panel or use the context menu "Edit Text" item, Acrobat will trim the selection to the current page only.
    The previous two responses are correct - you must either repeat the edit by hand on every page, or go back to the original document and make the changes there (which is the expected workflow for such a drastic alteration).

  • How can I change the position of the page footer when using the report generation functions of LabView 6.1.

    At present my page footer is printing too far up from the bottom of the page. I have been unable to find a property that enables the position to be changed.

    Use the Set Report Margin.vi to set the bottom margin to something less than the default 1. I got a standard report to print a footer .2 inches from the bottom of the paper.

  • HT1040 I have a full page photo in a iPhoto book that is splitting into two sections across 2 pages. Any ideas what the problem might be?

    I have a full page photo in a iPhoto book that is splitting into two sections across 2 pages. Any ideas what the problem might be?

    Have you selected the spread layout?
    If so change it to a single page full page layout
    LN

  • HT1349 So everything on this page relates to Apple products. I am running a Sony laptop with Windows and as soon as I install iCloud desktop iTunes has stopped working. The only time I ever needed it. GREAT! Do you do this on purpose?

    So everything on this page relates to Apple products. I am running a Sony laptop with Windows and as soon as I install iCloud desktop iTunes has stopped working. The only time I ever needed it. GREAT! Do you do this on purpose?

    The latest version of iTunes tends to act up occassionaly. See this support document http://support.apple.com/kb/HT1923 and remove and reinstall iTunes. This will not affect your music library, apps or other content in iTunes. Make sure you follow the steps exactly.
    Also, just copying the ringtone will not get it into your phone. iPhone ringtones have an extension of m4r, and you have to first take the Media player file and covert it to an AAC version. From there you need to change the extension from m4a to m4r. If you cannot see file extensions in Windows Explorer, which is actually the default action, go into Organize>Folder and search options, then hit the View tab, and then remove the checkmark by hide file extensions from known file types. After you have created the m4a version and changed the file extension, you can double-click on it and it should show up in the Tones folder in iTunes. From there, sync the phone and it should show up in the list of ringtones.

  • TS4268 I have done everything on this page to activate my iMessage! I somehow lost it when I upgraded to the iOS 6 version. Does anyone have any creative suggestions??

    I have done everything on this page to activate my iMessage! I somehow lost it when I upgraded to the iOS 6 version.
    Does anyone have any creative suggestions??

    themaluna wrote:
    I have Mac OS X 10.7.5 and GarageBand 6.0.5
    My iPad has iOS 7 as well.
    the latest version of GB for iOS requires the latest version of GB for the Mac which is version 10 (which is free, but also requires OS X 10.9 [though that is also free])

  • Everything on my page reads out loud from the speakers

    everything on my page reads out loud from the speakers

    Go to System Preferences>Universal Access, and make sure "VoiceOver" is set to OFF under the "Seeing" tab.

Maybe you are looking for

  • Navigating through photos in single-photo view in iphoto with trackpad is not working after installing new OS Mountain lion

    I have recently download new OS Mountain lion on my macbook (white late 2010 model). I had snow leopard before. On iphoto, when i was viewing my photos in a single-photo view (double clicking on a photo), i was unable to go to the next photo/previous

  • No sign of iPod recognition when plugging in Shuffle

    Hello everyone- First off, I'm running Windows XP and the latest version of iTunes. I have an iPod Shuffle, 1 gb. I've had this iPod about 2 months now. It has not undergone any serious conditions like getting wet. It has worked perfectly for those t

  • IPhone 3G OS 3.1.2 New Network Problems

    Ever since I upgraded my iPhone 3G to OS 3.1.2, the phone has network and reception issues. The phone goes into "searching" mode at random times and won't come out of it unless I either reboot, or turn on airplane mode and off to connect back to my c

  • Ampersand in header

    Hi experts, I'm here on behalf of a collegue of mine who cannot write in English. So I'm not expert on this matter, please forgive me and put me on the right way. My colleague gets a problem with transactions ME23, ME23N When he looks at the header o

  • Boot Camp via NetRestore to multiple Macs

    Is it possible to multicast an image containing a Windows XP installed inside a Mac partition to multiple iMacs? I have a class where they'd like to demonstrate XP to students in digital media, but I'd rather not go around to 16 iMacs and Boot Camp t