CS4 document window not showing

I have been running Indesign CS happily for the past year on a 13" macbook pro with Leopard. I just bought a brand new 15" macbook pro with Snow Leopard. Now if I open a file I need to minimize or expand the window to see a document. Also if I want to have multiple documents open the other tabs are visible at the top but not the window containing the document. I have trashed the preferences several times now. Sometimes it works for a little bit then stops. I really do not want to upgrade to CS5 yet. Any help is much appreciated.

You have a couple invalid formatted comments on the page which could be causing display issues for your "Title Starts Here" type of comments.  The comment tag is only <!-- Comment Goes Here -->.  I think those extra hyphens "-" might be causing an issue with the Design View and confusing Dreamweaver.  Additionally in your footer, you have 2 open <p> tags but only one closing </p> tag.  That needs to be fixed as well.  It looks like the one around the address portion is missing, copyright seems fine.
Lastly, you have some CSS errors in that document, but those shouldn't be causing the issue you are describing although they could cause browser issues that you may want to look into.
http://validator.w3.org/unicorn/

Similar Messages

  • Documents do not show up on iCloud.

    My documents will not show up on iCloud. I am just trying to upload documents from my Macbook to iCloud, nothing that resembles science fiction or that requires a PhD in computer science.. I have done everything that the help section/faq's tell me to do, still nothing shows up on iCloud. I am new to Mac but this doesn't seem to be any different than Windows... Any suggestions? Thank you.

    Welcome to the Apple Community.
    If you could tell us what you have done and where it's not working how it should, we might be able to help you.

  • My old emails and documents are not showing up in email or finder both from the same date and I cannot find them anywhere. I do not believe I have any archive settings on. Any idea how I get them to show up?

    my old emails and documents are not showing up in email or finder both from the same date and I cannot find them anywhere. I do not believe I have any archive settings on. Any idea how I get them to show up?

    Hello gpbondi,
    The following article provdies step-by-step instructions for downloading your purchases both in iTunes and on your devices.
    Download past purchases
    http://support.apple.com/kb/HT2519
    Cheers,
    Allen

  • Document is not showing up group currency  in the GL line item display

    Greetings,
    Could you please advice me as to why document is not showing up the group currency in the line item disply,  when all other document posted to that GL are showing it.
    Your prompt reply will be appreciated.

    Hi
    select screen layout and copy gorup currency field.
    Hope it will work
    Regards
    Murali

  • Appraisal document header not showing up in the Portal

    when I look at the appraisal document in Portal ESS MSS (using WD4A application Appraisal Document) the header of the appraisal document does not show up (in PHAP_ADMIN it does).
    how can I show the appraisal document header in the Portal?
    regards,
    Tiberiu

    >
    Chris Thomas wrote:
    > Do you know how to set the template such that the Header is expanded (displayed) by default ?
    >
    > Chris
    hi chris, that would almost definitely only be available by doing a webdynpro enhancement to hap_main_document.

  • BBC iPlayer window not showing on MAC OS X LION

    I tried unistall and reinstall, but iPlayer window not showing no more. It did work before.

    Hi, i've fixed it now. I had to remove the BBC iPlayer folder from the library and then reinstall it. But what i did not know was in MAC OS LION the library is now hidden. Thats why i could not follow the instructions on BBC iPlayer website. But it works back to normal now thanks.

  • Is it possible to make the document window not to hide behind the palettes?

    Is it possible to make the document window not to hide behind the palettes (layers, paths etc) like in CS5? For instance if I want to make a correction in the right part of the image and zoom in, the window expand under the different palettes and I can no longer see the area which I want to correct without change the document window size. I don't want to use the Photoshop application fram because then I can't see stuff in other applications ID, mail an so on. 

    I have written about how to control various font sizes in Thunderbird here:
    http://www.ramsden.org.uk/9_Type_sizes.html
    Generally, you shouldn't need to zoom; you can pre-set the display of message text.
    To get straight to the point, you should probably try the https://addons.mozilla.org/en-us/thunderbird/addon/theme-font-size-changer/ add-on to address issues with the size of the message list font.

  • Why wont panel float into ID CS4 document window?

    I have a strange situation arise in last several weeks. The toolbar and the panels will float but grey out when over the document window. If released they disappear and can be found on the Windows screen, not in the ID window where they should be. Panels will expand OK but its very frustrating not to be able to place them on the document window. I am using Windows 7 64 bit and ID has been updated to 6.0.5. Interestingly I downloaded the trial version of Design Suite 5 Premium and installed it. InDesign 5  is dispalying the same errors - I assume it picked up the plug-ins and preferences from ID CS4?
    Any ideas or solutions anyone?

    Thanks Peter
    I'll play around with the monitors. I have two monitors both running at native resolution (one 24" Samsung (1900 x 1200) and a 19" HP (1280 x 1024) set as an extended desktop. As far as I know no settings for them have changed but I'll try going back to a single monitor.
    As the problem does not exist on the other programs (Photoshop, Illustrator) that float panels it seems to be something in InDesign's coding is causing the problem and maybe reacting with  video settings. Strange as I have used InDesign CS4 since it was released with no problem up until a few weeks ago.
    If I create two document windows and float one off onto the other monitor then the toolbar and panels can be transferred onto the document on the 2nd monitor no problem but 'fall through' the document remaining in the program! By clicking reset Advanced Workspace they are recovered.
    I tried to uninstall CS4 but the uninstall program hangs so I have to work out why?
    Thanks for your help - I am sure the answer lies out there somewhere

  • [JS, CS4] Document window resizing

    Hello all
    Having trouble re-sizing the main document window with the below script fragment. Used to work perfectly in CS3. In CS4, if the document window is maximised and then the script is run, it works: it makes the window smaller. If the doc window is smaller than the maximum size and the script is run, it maximises the doc window: it doesn't make it the size specified in the script. In other words, every second time the script is run it works; the other times, it maximises the doc window. Have tried using smaller values for the win size, but doesn't matter what the values are.
    Any idea what's going wrong? It's a bit of an annoying glitch for me ...
    ===
    const left = 0;  const top = 50; const right = 200; const bottom = 200;
    win = doc.layoutWindows[0];
    var bounds = win.bounds;
    bounds[0] = top;   bounds[1] = left;   bounds[2] = bottom;   bounds[3] = right;
    win.bounds = bounds;
    ===
    I've tried making the above variable win point to app.activeWindow instead -- still doesn't work.
    Hope someone can help...
    Paul

    Don't know why, your code seemed very similar to mine
    Paul, its your code.
    I have just added one condition
    if (win.bounds != top+ "," + left +  "," + bottom + "," + right)
    if window bounds not equal to which one you want then below code execute
    win.bounds = [top, left, bottom, right];
    else nothing change with window bound.
    Shonky

  • Mac to XP. Windows not showing up in Sidebar. And mystery computer.

    Hello. I'm trying to establish a small connection between my Mac and my mothers PC, she often have problems with it, and it is low on HD space, so I thought I could use my Mac as a storage kind of thing.
    Anyhow, the PC does not show up in sidebar, and I can't connect using Go > Connect to Server > smb://192.168.1.3
    I don't know why.
    One computer is listed under shared, it is called joellundborfc48, and I have no idea what it is.
    The PC connects to my Mac just fine, but not the other way, sadly.
    My router is a Mici Broadband Router model KN-S1060.
    Any help is appreciated.
    Trying to connect via ethernet LAN, no wireless here.

    If you have a Mac:
    http://support.apple.com/kb/TS1591
    For Windows:
    http://support.apple.com/kb/TS1538

  • IC Webclient: document search not showing documents for contacts

    Hi,
    I am working with SAP CRM 4.0, SP7.
    I have created an account(a001) with three contacts(c001, c002, c003). I have attached a document(d001) to account a001 and two documents(d002, d003) to contact c001.
    Now when I open the IC-Web client UI and go to 'Identify Account' and enter a001 in the Account ID and do a search account, I see three contacts(c001, c002, c003) in the result list of account. When I click in the contact(c001) and go to 'Document Search', it shows only documents attached to a001 and there is no way I can see the documents attached to c001.
    Can anyone please let me know, how do I see the documents attached to contact c001 in this case?
    Please note that if I enter c001 in the Account ID of 'Identify Account' and then go to 'Document Search', then it shows me the documents d002 and d003. But, I want to see the contacts documents entering from accounts.
    Thanks in advance,
    Kunal

    Hello Hari,
    Sorry for the delayed Response, will check this BADI and if it helps then I will update this thread
    Thanks
    Chandu

  • Windows not showing. Page source and library windows open but not showing.

    I select View --> Page Source and no window appears. Under the Window menu, the item Source: . . . shows but no window. If I close the main window then the item is ticked but still no actual window.
    I have disable all extensions and plugins, safe mode, revert all preferences.
    the same happens with Show all Bookmarks. This is why I posted this under bookmarks problems originally - see below.
    I now find the same happens to downloads and Error console windows. No problems in Safari or MS Word (usually the worst performer)
    Bookmarks are all present, but show all bookmarks produces no window, even though the window menu shows an item and I can select it.
    Mac OS 10.6.8 FF 5.01 Show all bookmarks shows no window, even if I close the main window. Under window menu the 'Library' item is ticked but still nothing. I have restarted, and renamed places database. recently installed some of these addons

    The one that solved it was my own last post, which does not have a Solved it.
    I copied the FF profile folder from another login and started with that.
    However. . . the problem is back. I installed extensions, NoScript and MyBookmarks and it seemed OK after that.
    Then I installed Download Youtube videos + 3.3.51, then DownThemAll! 2.0.7, Google Shortcuts 2.1..6, ImTranslator, QuickWiki and Read It later. No Plugins ennabled.
    when I disable all extensions then the windows for downloads, error console and 'open link in new window appear OK, but not the source or Library windows.
    As before they are on the window menu but no way to make them visible.

  • Document Flags not showing on Web Excel

    We are using BW3.5 SEM4.0.
    Documents are added to cells in planning layouts.
    Documents flags are showing up on web and BEx reports. They are also showing up on non-Excel web planning layouts, and Excel Gui layouts.
    The flags are, however, not showing on Web Excel layouts. Althought the document could still be viewed, if you know which cell they are located in.
    Is there a solution to this? Thanks for reading.
    William

    Hi guys,
    I have a related problem: I set up BPS to handle the documents (and I already tested it, it works fine).
    My 4 characteristics are WBS element, version, fisc per, and material.
    Now, I am just creating a web reports that should also display these documents. What do I have to adjust in the Query designer? Do I have to restrict the report to exactly this combination to see them?
    (I have tried Query properties ->Display ->Display Document links, it shows icons per column, but does not display any BPS document I created)
    any help is appreciated
    thanks,
    martin

  • Document flow not showing material posted details in maint order

    Dear Frnds,
         In the refurbishment order document flow is not showing material posting documents. Plz guide me to correct the issue. Thanks for all your cooperation.
    Guruprasad KS

    Dear Thygarajan,
    Thx for ur reply. Goods issue button is been ticked in "Define Documentation for Goods Movements for the Order". Still same issue. It is working in different client so i hope not an IMG issues.Plz give ur valuable feedback.
    Guru

  • Windows not showing up in Startup Disk

    Just updated a 15" Retina to 10.8.3 and also ran the SMC 1.1 update. Now my bootcamp windows partition does not show up in the Startup Disk any more. I can see it in the Finder and I can reboot and hold down option key to boot into Windows, but for some reason it isn't showing up in Startup Disk Preference.

    yeah, I had a feeling it might be Tuxera causing it, wanted to see if there was another solution other than uninstalling it.
    I tried disabling it in the pref pane and that didn't fix the issue, so I'm assuming it would need to be uninstalled.
    As long as I am able to boot into Windows when needed (which isn't very often), I'm not too concerned.  Its a little inconvenient to have to hold Option during startup to do it, but it works.
    Whats annoying too is that when using BootCamp control panel in Windows to restart into OSX, it boots into the emergency partition for Lion instead of Lion.  So, guess holding Option at startup is the only option both ways!
    Thanks for the help.

Maybe you are looking for