Multiple copies of the same page?

Hi, under the previous version of iWeb, I somehow managed to create three 'Welcome' pages. All three are the same page, and all three show up in my .mac account online. However, I've since upgraded to Leopard (erase and install) and don't have any way to get to those actual pages that I know of. Does anyone have an idea on how I can get to them, or even simply delete them and start over?
Thanks
Dan

Dan ~ To simply delete those published iWeb pages from .Mac:
Connect to the Internet and click anywhere on your Desktop background to launch the Finder. Then in the menu bar at the top of your screen, click on...
Go > iDisk > My iDisk > (wait) > Web > Sites > ...
...drag your site folders to the Trash. If you see a "_gallery" folder, don't delete it -- that would be your .Mac Web Gallery if you've published one.
When done, Ctrl-click on the iDisk icon on your Desktop and choose Eject "userid". Wait for the iDisk icon to disappear.

Similar Messages

  • How do I print multiple copies of the same photo on one page or a contact sheet. The directions in help don't work

    I want to print multiple copies of the same photo on a page. The directions in help don't work
    Help

    What version of iPhoto?
    The general process is to select the photo and print, select the printer, paper size and print size and click customize and under settings selec multiples copies of a photo (the preview will reflect this choice) and click print to print, make any printer specific selections and click print to print
    LN

  • Multiple copies of the same photo on a page in iPhoto 11?

    Can I print multiple copies of the same photo on a page in iPhoto 11?

    Try the following:
    1 - put the photo in an album and duplicate it as many times as the number of prints you want on a given page. This is assuming the page is US Letter (borderless).
    2 - select all the prints and type Command+P (Print).
    3 - in the next window select Paper Size to be US Letter (borderless).
    4 - also, at the bottom of the window, select the aspect ratio and a custom size that will allow you to get all of the photos on one page.
    This screenshot is for a photo that has a size ratio of 4:3, was duplicated 3 times and then printed with a custom size of 4x3 selected to get four prints on the page. You can experiment the custom size until you get the largest possible size for the 4 photos on the page.
    OT

  • How can I print multiple copies of the same photo onto one sheet of paper?  Do I have to Duplicate the photo in iPhoto and then select them all?

    How can I print multiple copies of the same photo onto one sheet of paper?  Do I have to Duplicate the photo in iPhoto and then select them all?

    no - you simply have to select the option to print mucliples of a photo on a page
    select the photo and go to the file menu ==> print - select the printer, paper size and print size and click customize - in the tool bar click on the settings icon (the gear looking thingy) and select "multiple of the same photo per page" and the preview will reflect this option showing a full page of the selected size photos
    LN

  • Multiple copies of the same book showing up in iBooks and it will not load just keeps spinning????

    Anyone else having problems with iBooks, multiple copies of the same book have shown up downloaded in my bookshelf, iBook doesn't want to load jus spins and spins, HELP!

    Have you tried to force quit iBooks?
    Double tap the home button. You'll see the app icons adn a preview show up on the screen. Scroll sideways if needed to get the preview and icon for iBooks on the screen. Flick the preview window up and off the screen. Then single tap on the home page preview, or on the home button to exit the mode then try to open iBooks again

  • Can I open multiple copies of the same book?

    I am reading a more technical book. It would be helpful to have multiple pages opened at the same time (for the purpose of reference)
    Is it possible to open more than one copy of the same book?
    I know that I can open the book on my iPad or iPhone, but I would like to open them both on my Mac.

    I used to be able to print multiple copies of the same picture on one page using iphoto. There was a customise button when you went through to print and it was there somewhere. I can't see it anymore - maybe since an upgrade.
    It's gone. But as a work-around, duplicate your photo (⌘D) to create as many versions as you want copies and select all at once. Then use the "Custom" print layout and set the photo size you want.
    After printing, trash the added versions.

  • Can I print multiple copies of the same picture on iphoto 9.5

    I used to be able to print multiple copies of the same picture on one page using iphoto. There was a customise button when you went through to print and it was there somewhere. I can't see it anymore - maybe since an upgrade. Can anyone see how to do this now?

    I used to be able to print multiple copies of the same picture on one page using iphoto. There was a customise button when you went through to print and it was there somewhere. I can't see it anymore - maybe since an upgrade.
    It's gone. But as a work-around, duplicate your photo (⌘D) to create as many versions as you want copies and select all at once. Then use the "Custom" print layout and set the photo size you want.
    After printing, trash the added versions.

  • Print Multiples copies of the same form.

    Post Author: Morovis
    CA Forum: General
    Can I print a multiples copies of the same form using a counter. For example I like to print 200 copies and I have a variable or running toatl that can be incremeted by 1 trought the copies.

    I used to be able to print multiple copies of the same picture on one page using iphoto. There was a customise button when you went through to print and it was there somewhere. I can't see it anymore - maybe since an upgrade.
    It's gone. But as a work-around, duplicate your photo (⌘D) to create as many versions as you want copies and select all at once. Then use the "Custom" print layout and set the photo size you want.
    After printing, trash the added versions.

  • How can I have use the same div ID multiple times on the same page?

    Okay so a problem I encounter a lot is that often times I want to use the same div ID several times on the same page. An example of this is when I'm creating table like designs.
    Let's say for instance I create a div ID called 'product-container'. I want to use 'product-container' multiple times on the same page but if I do this it is improper XHTML and will throw errors in any XHTML validator (you are only allowed to use a div ID once on any XHTML page in order for it to be standards compliant).
    Now the first option is that I could define 'product-container' in my CSS style sheet multiple times by doing something like this...
    #product-container {
         width: 300px;
    #product-container-2 {
         width: 300px;
    #product-container-3 {
         width: 300px;
    #product-container-4 {
         width: 300px;
    What you will see there however is that it seems pointless to define the same ID numerous times over (just adding a number on the end) when each ID is the exact same thing and has the exact same attributes.
    Now what I have noticed is that there are some sites out there who manage to have the same ID appear several times in the code but add a number to it just like above. The difference is that they only have one definition for 'product-cointainer' in their CSS document but in their actual XHTML code they have IDs for 'product-container' but with numbers on the end like 2,3,4,5, etc. It's almost as if JavaScript or some other code is automatically appending a number on the end of the ID so the validator won't consider the markup to be invalid, but yet it knows that it's using the same 'product-container' style that is contained in the CSS style sheet.
    I hope I explained this correctly. I'm just hoping to find a way that I can put the same div ID on a page multiple times without having to define it over and over again in my CSS.
    Any help is much appreciated!

    Because it seems like by using a class you can't make this position as 
    well as you can by using an ID. Am I wrong?
    An ID name can be used only one time per page.  A class name can be used multiple times per page.
    .product {
    width: 300px;
    text-align:left;
    color: #FF0000
    border: 2px solid #666;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • How can I remove multiple copies of the same song from the iTunes listing?

    How can I remove multiple copies of the same song from the iTunes listing. The program seems to be picking up the same songs from, for example, my user area and my public area in the C drive

    As above, Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library, however it is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve/merge ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • Multiple copies of the same podcast?

    Why do I get multiple copies of the same podcast with different episodes in iTunes?  Is there a way of merging them into a single
    podcast?  On my iMac, I may delete some episodes and add others.  When syncing with my iPhone, a new podcast is created rather
    than updating the existing podcast.  At times, I've ended up with four different podcasts of the same program and finding a specific episode
    means searching thru all four. 

    I have been experiencing the same problem, and unfortunately sanfranciscotx's suggestion doesn't address or resolve the issue.
    iTunes is behaving inconsistently.  There are podcasts for which I have selected the "Download All" option and it only downloads new podcasts that have been released since the last time it was checked, regardless of how many podcasts were released in that time, without downloading old podcasts.
    In another case, the "Download All" option is selected, and it works as I would expect (the above scenario) for some time, but then one week it will start downloading a bunch of older podcasts as the original poster has mentioned.
    I am running iTunes 10.5.3, so I'm lead to believe the issue lies with the server where the podcasts are stored or the podcast feed and not with iTunes.

  • Can I purchase multiple copies of the same song

    I want to purchase multiple copies of the same song to avoid copyright issues if I make a mixed cd and give it away.

    As above, Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library, however it is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve/merge ratings, play counts and playlist membership. See this thread for background and please take note of the warning to backup your library before deduping.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • I can no longer (since upgrading to the latest firefox) open up multiple tabs of the same page (something I need to be able to do when emailing and referencing multiple emails while writing one email). The only option it gives me is to 'switch to tab'.

    Question
    I can no longer (since upgrading to the latest firefox) open up multiple tabs of the same page (something I need to be able to do when emailing and referencing multiple emails while writing one email). The only option it gives me is to 'switch to tab'.

    I'll try to make this clear. I USED to be able to left click on a hyper link and the hyper link would open in a NEW tab. Now for some unknown reason the hyper link by default opens in the same tab (window). I have to right click the hyper link in order for it to open in a NEW tab. (Yes, my 'tools'> 'options'> 'tabs' are set to "open new windows in a new tab." (Please no answers telling me to get rid of the Ask toolbar because I don't have one.) Thank you.

  • In iPhoto 9.5.1, how do I print multiple copies of the same photo on a sheet ?

    In iPhoto 9.5.1, how do I print multiple copies of the same photo on a sheet ?
    I am somehow missing the "settings" which allowed me to do this in earlier versions.
    Grateful for any hints. Thank you. Znon

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    You can only do it by duplicating the photos "n-1" times to make "n" prints and selecting all copies then print
    LN

  • Installing multiple copies of the SAME service on a BOX

    This is a "Best Practice" question for BOE-XI (3.x).
    I have dug through the 3.1 DEPLOYMENT training, Admin and Pattern documents, but none of them clearly discuss anything around installing multiple copies of the SAME service (eg. CMS, ReportJob) on the same physical server if it has more that 1 CPU.
    The documents detail the "per CPU" limits of a service, but don't detail if we should install multiple services to take advantage of the multiple CPUs available on a specific Physical Server.
    For example - the Crystal Report Job Server can support five (5) simultaneous report jobs per CPU by default.
    If we have a 2 CPU machine, do we run one (1) CRJS service - but increase the "Maximum Jobs Allowed" setting to Ten (10), or do we install two (2) CRJS services each with a default limit of Five (5)...?
    Does this rule apply to all services including the One (1) CPU for One-Hundred (100) simultaneous requests sizing-limit on the CMS..? That doesn't appear to be a setting we can control within the CMC.
    Can you run more than one CMS service on a specific Physical Server...?
    Thanks in advance for the advice.

    I personally have run 20 jobs per Crystal Job server and most were dual processor dual core.  I had over 1000 jobs a night, but not all at 1am...although most were within 2 hours of the same time.
    I was able to get through them.  However, I had 4 Crystal Job servers.  Its all about your hardware being taxed.
    I broke off my CMS away from the processing tier.  So I could have multiple Crystal Job servers.
    We had 3 processing tier servers all doing Crystal Jobs and Webi jobs.  I had 60 running at one time for Crystal. 20 per job server.
    i could have added the Crystal job servers to the same server, but the hardware was getting busy.
    I would have at least 2 CMS's as they support 500 concurrent users (Sessions?) each.
    This helped us - and we had over 8k reports in our repository.  We were getting bound by memory constraints.
    Once you get to 64 bit OS and App, (BO XI 4.0 sometime in 2010) it will help with this problem.
    The only other way in the 32 bit environment is to add servers, even VM's if you have to as long as they are different hosts, but that adds expensive BOE CPU licenses - the big caveat to that.
    That's how we solved the problem...

Maybe you are looking for