Stuck with clear behaviour

Hello all,
Please see http://www.thewharfhouse.co.uk/press-and-media.html - I'm stuck trying to get the <h3 class="pressmedia"> headings to work as desired. I have set a clear:left in the style sheet, and applied a margin-top:30px in order to add some distance between whatever's above, but it's not working.
Actually, I think the first 'Exterior images' one is working in terms of the space above it, but all the others below haven't loaded with the margin-top as desired.
Any ideas what I'm doing wrong?
Thanks in advance

First things first - you can only use a given ID value once on any given page.  You have used pressmedia_container many times, for example -
<div id="pressmedia_container"><a href="Images/press-media-full-size/TheWharfHouse-Exterior/The Wharf House exterior 01.JPG" target="_blank"><img src="Images/press-media-small/TheWharfHouse-Exterior/The Wharf House exterior 01.JPG" width="180" height="135" border="0" class="pressmedia_container" /></a>
</div>
<div id="pressmedia_container"> <a href="Images/press-media-full-size/TheWharfHouse-Exterior/The Wharf House exterior 02.JPG" target="_blank"><img src="Images/press-media-small/TheWharfHouse-Exterior/The Wharf House exterior 02.JPG" width="101" height="135" border="0" class="pressmedia_container" /></a>
</div>
Before doing anything else you should change that.  If you want to re-use a selector like this, it needs to be a class not an ID value.

Similar Messages

  • Stuck with a message on the touch screen - checking device

    This is an officejet 8500 wireless - the computer OS is Vista 64
    The touch screen on the printer is stuck with a message that says "checking device"  I cannot cancel or stop unless I unplug the printer. This occured after a paper jam.

    First, make sure there are no little pieces of paper left in the printer. This document can help you check it out:
    Paper Jams.
    If you still get the message on the screen, pull the power cord out while the printer is turned on. Wait 15 mseconds. Hold down the # and 6 keys on the front while you plug the power cord back in. This should reset the printer and, with luck, will clear the message.
    I am an employee of Hewlett Packard.
    - - Please mark Accept As Solution if it solves your problem so others can more easily find the answer - -
    - - Please click the Kudos star if you would like to say thanks - -

  • Im stuck with my 0,18$ american. I want to get rid of it! My giftcard and my creditcard is canadian. Im stuck!help!

    I created an american account because i bought a american giftcard. But now im back in canada with my canadian giftcard and my canadian creditcard but im stuck with my 0,18$ american. What do i do?!?

    Go here:
    http://www.apple.com/support/itunes/contact/
    and follow the instructions to report the issue to the iTunes Store. They can probably clear your remaining balance for you.
    Regards.

  • Documents number is cleared automatically with clearing doc. ALE-extern

    Hi Mr./Mis.
    I'm  from China, I found that when I posted one invoice and planned to clear it manually, but I failed to do this due to it was cleared automatically with clearing doc. ALE-extern, could you advise the reason and the solution, thank you in advance.

    I have that behaviour in a system where IDOC FIDCC1 is generated to be sent to other system

  • Hi, I was about to reset my iphone3g when I accidentally selected erase all contents and setting. It was stucked with the iphone logo, so i tried to fix it by restoring all my datas in iTunes. I was able to successfully fix it but when I inserted my sim c

    hi, I was about to reset my iphone3g when I accidentally selected erase all contents and setting. It was stucked with the iphone logo, so i tried to fix it by restoring all my datas in iTunes. I was able to successfully fix it but when I inserted my sim card it says that simcard not recognized. I tried all the solutions in the net but nothing seemed to work. What should I do? I'm located here in the Philippines. I hope you could help. Thanks! 

    I know. I was with my brother when we did this. He didnt clearly understood the question that poped-up. Regarding the simcard, after successfully restoring it on itunes my simcard won't work. I'm not able to send and receive calls and messages.
    hi, I was about to reset my iphone3g when I accidentally selected erase all contents and setting. It was stucked with the iphone logo, so i tried to fix it by restoring all my datas in iTunes. I was able to successfully fix it but when I inserted my sim c 

  • Still stuck with the same old producer consumer weight problem need help

    Hello All,
    This is the problem I am stuck with right now.
    I have two array lists one producer array list and one consumer array list denoted by a and b
    P1 P2 P3 P4 P5
    5 6 7 8 9
    C1 C2 C3 C4 C5
    2 3 4 5 6
    Now we find all those producer consumer pairs which satisfy the criteria Pi>=Ci
    We have the following sets
    (5,2)(6,2)(7,2),(8,2),(9,2)
    (5,3)(6,3)(7,3),(8,3),(9,3)
    (5,4)(6,4)(7,4),(8,4),(9,4)
    (5,5)(6,5)(7,5),(8,5),(9,5)
    (6,6)(7,6)(8,6),(9,6)
    Let us done each of them with Si
    so we have S1,S2,S3,S4,S5
    we assign a third parameter called weight to each element in Si which has satisfied the condition Pi>=Ci;
    so we we will have
    (5,2,ai),(6,2,bi),(7,2,ci)....etc for S1
    similarly for S2 and so on.
    We need to find in each set Si the the pair which has the smallest weight.
    if we have (5,2,3) and (6,2,4) then 5,2,3 should be chosen.We should make sure that there is only one pair in every set which is finally chosen on the basis of weight.
    Suppose we get a pair (5,2,3) in S1 and (5,2,3) in S2 we should see that (5,2,3) is not used to compare to compare with any other elements in the same set S2,
    Finally we should arrive at the best element pair in each set.They should be non repeating in other sets.
    Given a problem
    P0 P1 P2 P3 P4
    9 5 2 2 8
    6 5 4 5 3
    C0 C1 C2 C3 C4
    we have So as (P0,C0) and (P4,C0)
    assuming that the one with the smaller index has lesser weight PO is selected.In the program I have used random weights.from set S1 we select the pair PO,CO
    S1 =(P0,C1),(P1,C1) and (P4,C1)
    since P0 and P4 are already used in previous set we dont use them for checking in S1 so we have (P1,C1) as best.
    S2=(P0,C2),(P1,C2) and (P4,C2) so we dont use P0,C2 and P1 and C2 because PO and P1 are already used in S1.
    So we choose P4,C2
    in S3 and S4 ae have (P0,C3),(P1,C3),(P4,C3) so we dont choose anything
    and same in S4 also.
    So answer is
    (P0,C0),(P1,C1) and (P4,C2).
    My program is trying to assign weights and I am trying to print the weights along with the sets.It doesnt work fine.I need help to write this program to do this.
    Thanks.
    Regards.
    NP
    What I have tried till now.
    I have one more question could you help me with this.
    I have an array list of this form.
    package mypackage1;
    import java.util.*;
    public class DD
    private  int P;
    private  int C;
    private int weight;
    public void set_p(int P1)
    P=P1;
    public void set_c(int C1)
    C=C1;
    public void set_weight(int W1)
    weight=W1;
    public int get_p()
    return P;
    public int get_c()
    return C;
    public int get_x()
    return weight;
    public static void main(String args[])
    ArrayList a=new ArrayList();
    ArrayList min_weights_int=new ArrayList();
    ArrayList rows=new ArrayList();
    ArrayList temp=new ArrayList();
    Hashtable h=new Hashtable();
    String v;
    int o=0;
    DD[] d=new DD[5];
    for(int i=0;i<4;i++)
    d=new DD();
    for(int i=0;i<4;i++)
    d[i].set_p(((int)(StrictMath.random()*10 + 1)));
    d[i].set_c((int)(StrictMath.random()*10 + 1));
    d[i].set_weight(0);
    System.out.println("Producers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_p());
    System.out.println("Consumers");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_c());
    System.out.println("Weights");
    for(int i=0;i<4;i++)
    System.out.println(d[i].get_x());
    for(int i=0;i<4;i++ )
    int bi =d[i].get_c();
    ArrayList row=new ArrayList();
    for(int j=0;j<4;j++)
    if( d[j].get_p() >=bi)
    d[j].set_weight((int)(StrictMath.random()*10 + 1));
    row.add("(" + bi + "," + d[j].get_p() + "," +d[j].get_x() + ")");
    else
    d[j].set_weight(0);
    row.add("null");
    rows.add(row);
    System.out.println(rows);
    int f=0;
    for(Iterator p=rows.iterator();p.hasNext();)
    temp=(ArrayList)p.next();
    String S="S" +f;
    h.put(S,temp);
    String tt=new String();
    for(int j=0;j<4;j++)
    if(temp.get(j).toString() !="null")
    // System.out.println("In if loop");
    //System.out.println(temp.get(j).toString());
    String l=temp.get(j).toString();
    System.out.println(l);
    //System.out.println("Comma matches" + l.lastIndexOf(","));
    //System.out.println(min_weights);
    f++;
    for(Enumeration e=h.keys();e.hasMoreElements();)
    //System.out.println("I am here");
    int ii=0;
    int smallest=0;
    String key=(String)e.nextElement();
    System.out.println("key=" + key);
    temp=(ArrayList)h.get(key);
    System.out.println("Array List" + temp);
    for( int j=0;j<4;j++)
    String l=(temp.get(j).toString());
    if(l!="null")
    System.out.println("l=" +l);
    [\code]

    In your example you selected the pair with the greatest
    distance from the first set, and the pair with the least
    distance from the second. I don't see how the distance
    function was used.
    Also it's not clear to me that there is always a solution,
    and, if there is, whether consistently choosing the
    furthest or the closest pairs will always work.
    The most obvious approach is to systematically try
    all possibilities until the answer is reached, or there
    are no possibilities left. This means backtracking whenever
    a point is reached where you cannot continue. In this case
    backtrack one step and try another possibility at this
    step. After all possible choices of the previous step,
    backtrack one more step and so on.
    This seems rather involved, and it probably is.
    Interestingly, if you know Prolog, it is ridiculously
    easy because Prolog does all the backtracking for you.
    In Java, you can implement the algorithm in much the same
    way as Prolog implementations do it--keep a list of all the
    choice points and work through them until success or there
    are none left.
    If you do know Prolog, you could generate lots of random
    problems and see if there is always a solution.

  • Time Machine stuck in "clearing up...

    Hugely appreciate any ideas how to fix this...I've tried for over a week now to get Time Machine working, but it keeps getting stuck at "clearing up", even though it seems to be only 2/3rds of the way through the back up.
    I've erased the Lacie hard drive I'm using as a back up, and used it as a Time Machine back up on another computer alsewhere.
    I've also reinstalled Snow Leopard, no joy.
    I've reindexed the drive using Spotlight too.
    Below are my Console error masaages, be grateful for any ideas - thanks in advance
    Jul 8 01:07:17 rocksteady-2 com.apple.backupd-auto[8486]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 02:07:17 rocksteady-2 com.apple.backupd-auto[9296]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 03:07:17 rocksteady-2 com.apple.backupd-auto[10102]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 04:07:18 rocksteady-2 com.apple.backupd-auto[10991]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 05:07:18 rocksteady-2 com.apple.backupd-auto[11799]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 06:07:18 rocksteady-2 com.apple.backupd-auto[12604]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 07:07:18 rocksteady-2 com.apple.backupd-auto[13547]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 08:07:18 rocksteady-2 com.apple.backupd-auto[14360]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 09:07:18 rocksteady-2 com.apple.backupd-auto[15202]: Not starting scheduled Time Machine backup - time machine destination not resolvable.
    Jul 8 09:09:08 rocksteady-2 com.apple.backupd[15214]: Starting standard backup
    Jul 8 09:09:12 rocksteady-2 com.apple.backupd[15214]: Backing up to: /Volumes/Little Nelly/Backups.backupdb
    Jul 8 09:09:17 rocksteady-2 com.apple.backupd[15214]: Backup content size: 330.3 GB excluded items size: 9.4 GB for volume Macintosh HD
    Jul 8 09:09:17 rocksteady-2 com.apple.backupd[15214]: No pre-backup thinning needed: 385.08 GB requested (including padding), 465.02 GB available
    Jul 8 09:09:17 rocksteady-2 com.apple.backupd[15214]: Waiting for index to be ready (101)
    Jul 8 09:09:17 rocksteady-2 mds[4975]: (Normal) DiskStore: Creating index for /Volumes/Little Nelly/Backups.backupdb
    Jul 8 10:09:16 rocksteady-2 com.apple.backupd[15214]: Copied 48.7 GB of 320.9 GB, 252393 of 1510480 items
    Jul 8 10:33:47 rocksteady-2 com.apple.backupd[15214]: CoreEndianFlipData: error -4940 returned for rsrc type FREF (id 129, length 7, native = no)
    Jul 8 10:33:47 rocksteady-2 com.apple.backupd[15214]: CoreEndianFlipData: error -4940 returned for rsrc type FREF (id 129, length 7, native = no)
    Jul 8 11:09:16 rocksteady-2 com.apple.backupd[15214]: Copied 118.9 GB of 320.9 GB, 410345 of 1510480 items
    Jul 8 12:09:16 rocksteady-2 com.apple.backupd[15214]: Copied 195.9 GB of 320.9 GB, 547098 of 1510480 items
    Jul 8 12:25:38 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:25:38 rocksteady-2 com.apple.backupd[15214]: Error: (-36) SrcErr:NO Copying /Users/hugocurrie/Music/iTunes/iTunes Music/Keith Mansfield/Daddy Vegas 04/04 boogaloo.m4a to /Volumes/Little Nelly/Backups.backupdb/Rocksteady/2010-07-08-090915.inProgress/40F66944-A56E-40 68-B834-2A79CFBFDC93/Macintosh HD/Users/hugocurrie/Music/iTunes/iTunes Music/Keith Mansfield/Daddy Vegas 04
    Jul 8 12:25:38 rocksteady-2 com.apple.backupd[15214]: Stopping backup.
    Jul 8 12:26:31 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:26:31 rocksteady-2 com.apple.backupd[15214]: Error: (-8062) SrcErr:NO Copying /Users/hugocurrie/Music/iTunes/iTunes Music/Keith Mansfield/Daddy Vegas 04/04 boogaloo.m4a to /Volumes/Little Nelly/Backups.backupdb/Rocksteady/2010-07-08-090915.inProgress/40F66944-A56E-40 68-B834-2A79CFBFDC93/Macintosh HD/Users/hugocurrie/Music/iTunes/iTunes Music/Keith Mansfield/Daddy Vegas 04
    Jul 8 12:36:35 rocksteady-2 mds[4975]: (Normal) DiskStore: Rebuilding index for /Volumes/Little Nelly/Backups.backupdb
    Jul 8 12:40:43 rocksteady-2 mds[4975]: (Normal) DiskStore: Creating index for /Volumes/Little Nelly/Backups.backupdb
    Jul 8 12:43:51 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:44:45 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:45:39 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:45:39 rocksteady-2 com.apple.backupd[15214]: Copied 548165 files (199.3 GB) from volume Macintosh HD.
    Jul 8 12:46:33 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:46:33 rocksteady-2 com.apple.backupd[15214]: Copy stage failed with error:11
    Jul 8 12:47:27 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:48:21 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:49:14 rocksteady-2 com.apple.backupd[15214]: Error writing to backup log. NSFileHandleOperationException:* -[NSConcreteFileHandle writeData:]: Input/output error
    Jul 8 12:51:22 rocksteady-2 mdworker[18588]: (Normal) Import: Spotlight giving up on importing file /Volumes/Little Nelly/Backups.backupdb/Rocksteady/2010-07-08-090915.inProgress/40F66944-A56E-40 68-B834-2A79CFBFDC93/Macintosh HD after 240.001 seconds, 0 seconds of which was spent in the Spotlight importer plugin.

    Thanks for the instructions - this is what the Console showed. Where there's a line break, it came from a different file, eg system.log.4.bz2 and system.log.5.bz2 etc.
    Jul 26 00:48:30 rocksteady com.apple.backupd[320]: Copied 159.8 GB of 334.6 GB, 540478 of 1528593 items
    Jul 26 01:48:31 rocksteady com.apple.backupd[320]: Copied 172.0 GB of 334.6 GB, 546715 of 1528593 items
    Jul 26 02:48:32 rocksteady com.apple.backupd[320]: Copied 183.9 GB of 334.6 GB, 550256 of 1528593 items
    Jul 26 03:48:32 rocksteady com.apple.backupd[320]: Copied 195.9 GB of 334.6 GB, 553762 of 1528593 items
    Jul 26 04:48:32 rocksteady com.apple.backupd[320]: Copied 209.2 GB of 334.6 GB, 558395 of 1528593 items
    Jul 26 05:48:33 rocksteady com.apple.backupd[320]: Copied 222.9 GB of 334.6 GB, 561653 of 1528593 items
    Jul 26 06:48:33 rocksteady com.apple.backupd[320]: Copied 235.7 GB of 334.6 GB, 564892 of 1528593 items
    Jul 26 07:48:34 rocksteady com.apple.backupd[320]: Copied 248.4 GB of 334.6 GB, 569187 of 1528593 items
    Jul 26 08:48:34 rocksteady com.apple.backupd[320]: Copied 260.3 GB of 334.6 GB, 572291 of 1528593 items
    Jul 26 09:48:34 rocksteady com.apple.backupd[320]: Copied 271.3 GB of 334.6 GB, 575444 of 1528593 items
    Jul 26 10:48:35 rocksteady com.apple.backupd[320]: Copied 283.0 GB of 334.6 GB, 578591 of 1528593 items
    Jul 26 11:45:24 rocksteady com.apple.backupd[320]: Copied 582986 files (299.1 GB) from volume Macintosh HD.
    Jul 26 11:46:12 rocksteady com.apple.backupd[320]: No pre-backup thinning needed: 28.26 GB requested (including padding), 101.33 GB available
    Jul 26 11:46:12 rocksteady com.apple.backupd[320]: Waiting for index to be ready (100)
    Jul 26 11:47:12 rocksteady com.apple.backupd[320]: Waiting for index to be ready (100)
    Jul 26 11:49:52 rocksteady com.apple.backupd[320]: Copied 12158 files (86.2 MB) from volume Macintosh HD.
    Jul 26 11:50:11 rocksteady com.apple.backupd[320]: Starting post-backup thinning
    Jul 26 11:50:11 rocksteady com.apple.backupd[320]: No post-back up thinning needed: no expired backups exist
    Jul 26 11:50:11 rocksteady com.apple.backupd[320]: Backup completed successfully.
    Jul 25 00:48:16 Rocksteady com.apple.backupd[320]: Copied 21.9 GB of 334.6 GB, 60447 of 1528593 items
    Jul 25 01:48:16 Rocksteady com.apple.backupd[320]: Copied 26.7 GB of 334.6 GB, 81017 of 1528593 items
    Jul 25 02:48:17 Rocksteady com.apple.backupd[320]: Copied 28.3 GB of 334.6 GB, 104365 of 1528593 items
    Jul 25 03:48:17 Rocksteady com.apple.backupd[320]: Copied 30.7 GB of 334.6 GB, 119305 of 1528593 items
    Jul 25 04:48:17 Rocksteady com.apple.backupd[320]: Copied 32.1 GB of 334.6 GB, 139381 of 1528593 items
    Jul 25 05:48:18 Rocksteady com.apple.backupd[320]: Copied 33.5 GB of 334.6 GB, 202617 of 1528593 items
    Jul 25 06:48:19 Rocksteady com.apple.backupd[320]: Copied 37.2 GB of 334.6 GB, 243417 of 1528593 items
    Jul 25 07:48:20 Rocksteady com.apple.backupd[320]: Copied 46.5 GB of 334.6 GB, 251412 of 1528593 items
    Jul 25 08:48:21 Rocksteady com.apple.backupd[320]: Copied 56.9 GB of 334.6 GB, 258836 of 1528593 items
    Jul 25 09:48:22 Rocksteady com.apple.backupd[320]: Copied 68.8 GB of 334.6 GB, 281608 of 1528593 items
    Jul 25 10:48:23 Rocksteady com.apple.backupd[320]: Copied 77.0 GB of 334.6 GB, 308346 of 1528593 items
    Jul 25 11:04:37 Rocksteady com.apple.backupd[320]: CoreEndianFlipData: error -4940 returned for rsrc type FREF (id 129, length 7, native = no)
    Jul 25 11:04:37 Rocksteady com.apple.backupd[320]: CoreEndianFlipData: error -4940 returned for rsrc type FREF (id 129, length 7, native = no)
    Jul 25 11:48:24 Rocksteady com.apple.backupd[320]: Copied 80.2 GB of 334.6 GB, 334764 of 1528593 items
    Jul 25 12:48:24 Rocksteady com.apple.backupd[320]: Copied 88.0 GB of 334.6 GB, 346337 of 1528593 items
    Jul 25 13:48:25 Rocksteady com.apple.backupd[320]: Copied 103.5 GB of 334.6 GB, 348352 of 1528593 items
    Jul 25 14:48:26 Rocksteady com.apple.backupd[320]: Copied 111.0 GB of 334.6 GB, 359061 of 1528593 items
    Jul 25 15:48:26 Rocksteady com.apple.backupd[320]: Copied 113.2 GB of 334.6 GB, 380031 of 1528593 items
    Jul 25 16:48:27 Rocksteady com.apple.backupd[320]: Copied 117.4 GB of 334.6 GB, 395142 of 1528593 items
    Jul 25 17:48:27 Rocksteady com.apple.backupd[320]: Copied 125.3 GB of 334.6 GB, 417683 of 1528593 items
    Jul 25 18:48:27 Rocksteady com.apple.backupd[320]: Copied 131.9 GB of 334.6 GB, 438597 of 1528593 items
    Jul 25 19:48:28 Rocksteady com.apple.backupd[320]: Copied 134.6 GB of 334.6 GB, 458980 of 1528593 items
    Jul 25 20:48:28 Rocksteady com.apple.backupd[320]: Copied 136.3 GB of 334.6 GB, 490606 of 1528593 items
    Jul 25 21:48:28 rocksteady com.apple.backupd[320]: Copied 138.3 GB of 334.6 GB, 508152 of 1528593 items
    Jul 25 22:48:29 rocksteady com.apple.backupd[320]: Copied 141.1 GB of 334.6 GB, 519798 of 1528593 items
    Jul 25 23:48:30 rocksteady com.apple.backupd[320]: Copied 143.8 GB of 334.6 GB, 540256 of 1528593 items
    Jul 24 20:42:25 rocksteady com.apple.backupd[239]: Starting standard backup
    Jul 24 20:42:26 rocksteady com.apple.backupd[239]: Backing up to: /Volumes/Little Nelly/Backups.backupdb
    Jul 24 20:42:28 rocksteady com.apple.backupd[239]: Backup content size: 344.2 GB excluded items size: 9.6 GB for volume Macintosh HD
    Jul 24 20:42:28 rocksteady com.apple.backupd[239]: No pre-backup thinning needed: 401.58 GB requested (including padding), 406.22 GB available
    Jul 24 20:42:28 rocksteady com.apple.backupd[239]: Waiting for index to be ready (100)
    Jul 24 20:42:48 rocksteady com.apple.backupd[239]: Copied 0 files (0 bytes) from volume Macintosh HD.
    Jul 24 20:42:48 rocksteady com.apple.backupd[239]: Backup canceled.
    Jul 24 20:48:12 rocksteady com.apple.backupd[320]: Starting standard backup
    Jul 24 20:48:13 rocksteady com.apple.backupd[320]: Backing up to: /Volumes/Little Nelly/Backups.backupdb
    Jul 24 20:48:19 rocksteady com.apple.backupd[320]: Backup content size: 344.2 GB excluded items size: 9.6 GB for volume Macintosh HD
    Jul 24 20:48:19 rocksteady com.apple.backupd[320]: No pre-backup thinning needed: 401.54 GB requested (including padding), 406.21 GB available
    Jul 24 20:48:19 rocksteady com.apple.backupd[320]: Waiting for index to be ready (101)
    Jul 24 20:48:19 rocksteady mds[42]: (Normal) DiskStore: Creating index for /Volumes/Little Nelly/Backups.backupdb
    Jul 24 21:48:15 Rocksteady com.apple.backupd[320]: Copied 9.4 GB of 334.6 GB, 20141 of 1528593 items
    Jul 24 22:48:15 Rocksteady com.apple.backupd[320]: Copied 16.9 GB of 334.6 GB, 20160 of 1528593 items
    Jul 24 23:48:16 Rocksteady com.apple.backupd[320]: Copied 19.9 GB of 334.6 GB, 24060 of 1528593 items

  • Adobe Revel has re-dated thousands of my pictures, and when I correct them, Revel auto corrects them back to some bad date. I am stuck with thousand of pictures that I cannot correct the dates.

    Adobe Revel has re-dated thousands of my pictures, and when I correct them, Revel auto corrects them back to some bad date. I am stuck with thousand of pictures that I cannot correct the dates.

    I know it sounds confusing.  Essentially I have to re-register to get into my Adobe Photoshop 3.2.  But they are no longer giving access codes when you go though the registration process.  I checked my "online account" and there are no records of my registration for this.  I had this program, used this program and I can even see my pictures all lined up behind the "registration" box that pops up (and then kicks me out of the program when I hit "register later").  I just want a registration number...any number...that will allow me to open up the PS 3.2 and allow me access to my pictures.  I was told by one of the more sympathetic online CSR's via email that I could call the 800 number and hopefully get another number, but I run the battery out on my hand held phone waiting on hold for so long...I am not kidding you.  This seems like a very very simple matter...just give me an access code...but it has turned remarkably frustrating because I cannot reach a live person to ask.  You would think Adobe would not be happy that customers would have to wait so long...because why would you ever want to actually purchase an Adobe product if you know for certain that there is no support for it.  It is somewhat making up my mind on Adobe products.  Again, I cannot retrieve these pictures with a search, they are not in the digital camera folder as someone advised before.  I would love any and all feedback on what to do about this.  Is it possible that the files are corrupted?  Yes...but why can I clearly see the photos behind the registration box.  Please, anyone, help!

  • Firefox browser is very slow, I delete history and Cache often, I like Firefox better than IE but need it faster as I am stuck with Dialup.

    I empty Cache and all recent history except passwords to get about 4kbs and at most I can get about 6.7kbs. Firefox is a lot better than IE but I am stuck with Dialup or a high price for DSL from our Local Telephone company. I have Windows Vista and IE9 and 7 as this is a 64 system so I have to download both 32 and 64 to run. Firefox is bright and clear. I see that instead of Java which is disabled for Firefox it uses Jagermonkey, I tried to find some info on this but couldn't. I downloaded Firefox7 just 2 weeks ago.

    Your Shockwave Flash is not current, do not install additional "crapware" which will likely be offered when installing an Adobe product
    :http://www.adobe.com/software/flash/about/
    :also check all plugins through the '''about:plugins''' link
    :to http://www.mozilla.com/plugincheck/
    There is little point is running the 64bit version of Firefox, it is really for testing.
    You can clear cache automatically when you shutdown Firefox (see image)
    * http://img232.imageshack.us/img232/4928/clearcachew.png
    :REM Clear your temporary internet files when Firefox is down with a .bat file
    :rem S Delete specified files from all subdirectories
    :rem Q Quiet mode, do not ask if ok to delete on global wildcard
    :rem F Force deletion of read only files
    :del C:\Users\'''''myuserid'''''\AppData\Local\Temp\*.* /s /q /f
    :del c:\"Documents and Settings\'''''myuserid'''''\Local Settings\Temp"\*.* /s /q
    Stop ghostly indexing, autoplay
    * http://dmcritchie.mvps.org/windows-7/win7.htm#ghosts
    Use "Adblock Plus" to block advertisements, etc consumes a lot of time/transmissions
    * Adblock Plus :: Add-ons for Firefox<br>https://addons.mozilla.org/firefox/addon/adblock-plus/
    * Adblock - MozillaZine Knowledge Base<br>http://kb.mozillazine.org/Adblock
    Install a "hosts" file as well, see link in the MozillaZine article above
    This seems to have helped, to early to tell, I ran all options individually of the add-on then uninstalled it, see
    : http://blog.bonardo.net/2011/09/30/is-your-firefor-freezing-at-regular-intervals
    I would install the second one will show if you got disconnected
    * Restartless Restart :: Add-ons for Firefox<br>https://addons.mozilla.org/firefox/addon/restartless-restart/
    * Work Offline :: Add-ons for Firefox<br>https://addons.mozilla.org/firefox/addon/work-offline/

  • How Long will it take to reset the 16gb ipad with clear all data in it.

    How Long will it take to reset the 16gb ipad with clear all data in it.

    I have the same problem. I try to reset my ipad / iphone 3g using the reset and delete all content on general. It is almost 2 days now but my ipad / iphone 3g are not yet finish. Only apple logo / looping circle appears on the screen. What will i do? thanks... iOS 5.0.1

  • I followed all the directions to get Norton 360 to work with Firefox 8, but nothing works. I love Firefox, but if my Norton 360 won't work with it I'll be stuck with IE, which I do not like. Please Help Me!

    I followed all the directions to get Firefox 8 to work with my Norton 360, but nothing has worked. Is there anything else I can do? I didn't know there was an issue when I first upgraded to Firefox 8 so didn't choose the Norton plug ins immediately so I uninstalled Firefox hoping to be able to do it correctly when I Downloaded it again. Unfortunately it didn't ask me any thing regarding Norton so I went to Plug ins as directed to Enable Norton 360's plug ins, but none were listed.
    What can I do now? I LOVE Firefox! If we can't make it work I'll be stuck with Internet Explorer which I do not care for at all!
    I need to have Norton Security to protect my computer. Please help me find a solution to this problem ASAP.
    Thank you,
    Susan L Woods
    [email protected]

    Hi Susie, I use Norton 360 and have the latest Firefox 8 installed is working fine for me. Firefox 8 support for [http://community.norton.com/t5/Norton-360/Firefox-8-Support-for-Norton-Toolbar/td-p/581640 Norton Toolbar] was released on Nov 8th. Install the appropriate add-ons based on the version of Norton 360 you're using (see official Norton link above). Hope this helps.

  • My iphone5s was accidentally disconnected while updating OS8.2 in my MacBook Pro and now it's stuck with an apple logo on its screen and won't turn on or off. What should I do?

    My iphone5 was accidentally disconnected while updating OS8.2 in my MacBook Pro and now it's stuck with an apple logo on its screen and won't turn on or off. What should I do?

    Connect to iTunes and restore. If you have difficulty, you may have to put the device into Recovery Mode. See the instructions in this support document. If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • HT1212 My ipad mini has been crashing a lot recently so I started a system reset. However, it's now stuck with the progress bar less than a quarter gone: this has been the case for several days now. I have tried resetting from itunes but it needs the pass

    Now it's stuck with the progress bar less than a quarter full. I have also tried resetting through itunes which works right up to the point where itunes states that it needs the passcode to be inputted into the ipad to connect to it. At which point it then sticks at the same progress bar point. HELP!! please, this ipad is really important to my work.

    Well the term "hotlined" I have never heard before. In any case many states (like NY) just passed regulatory powers to the State Public Service Commission of which it may be called something different in your state. You could file a complaint with them. Or file a complaint with your state attorney generals office, they also take on wireless providers.
    The problem here is the staff you speak to are poorly trained, in days gone by it took one call to them and they pulled up your account and see the error and had the authority to remove any errors. They did not remove legitimate account actions, but used their heads instead of putting a customer off or worse lying to the customer.
    Its a shame you have to go through what you going through.
    Good Luck

  • Unable to clear open items through post with Clearing F-04

    Hi Experts,
    I want to clear one GL code through transaction F- 04 Post with Clearing.
    When I clear the open items throgh f-04, (Document types UA , KR , MJ ) it posts the document but again it makes a new line item as a open item with same amount.New line item shows in a list as a open item. ( I tryed F-03 as well)
    I am unable to unable to understand the exact functionality of transacion F-04.
    Can anyone explain me please ? Please advice if I am missing anthing on this.
    Thanks,
    Manasi

    Hi Manasi,
    As the name suggest, F-04 allows you to POST to one account by CLEARING another account.
    For example you have a provision account which needs to be adjusted when the actual expense is paid -  this how it will be done -
    Give the document header details, select "Transfer posting with clearing", enter the posting key (40), give the GL account (expense account as per the example) and go to the next screen.
    Give the amount and other details for the line items and then select "choose open item" from the menu. The new screen will ask you to give an account where you will give the provision account (the account from which the open item needs to be cleared).
    Press enter and you will get the list of open items for the GL account from where you can proceed like any other clearing.
    Hope this clarifies. Do revert in case of any further queries.
    Thanks and Regards,
    anit

  • F-04 Post with clearing - Document Splitting issue

    Hi Guru,
    In the system I have implemented the document splitting by Profit Centre and Segment.
    I'm trying to post an Incoming Payment (Tcode F-04) with clearing related to two customer.
    During the invoices I inserted two different Profit Centre by customer invoice.
    When I post, in one document, the incoming payment related to the two invoices I don't insert the Profit Centre values manually, but I link the payment to the customer invoices to be cleared.
    The system is not able to derive the Profit Centre inserted in the customer invoice in the incoming payment posting! I cannot post it neither manually because, rightly, I can insert the Profit Centre only for the Bank accounts and not for the Customer account.
    How can I derive the Profit Centre from the customer invoices?
    Let me know.
    Thanks
    Ciao

    Hi Ciao,
    Just post your incoming payment with the transaction.
    F-02       Bank dr.
                         Customer cr.
    and then try to clear the document with F-04.
    might help you.................
    Chintan Joshi.

Maybe you are looking for

  • How to refund the security deposit?

    When I was setting up a new line I needed to pay $125 for the security deposit. The sales people told me it would be refunded after 6 months of use in form of credit in the billing cycle. But after 7 billing cycles, I still havent got any and still n

  • Fiscal year change for AA

    Hello All, I have uploaded my legacy assets in DEV client for testing(Transfer date is 31.12.2008) After uploading, i'm going to check the balances through AR02 report in the FY 2009, but it is giving below error message Fiscal year change not yet ma

  • My MAC OSX 10.4.11 does not recognize Agfa SnapScan 1212u.I am trying to find a working scanner at home to finish a project and dusted this off. Why doesn't it work?

    My hp all-in-one is out of commission.I am trying to finish a scanning project and am forced to use an old Agfa SnapScan 1212u. My OSX Tiger 10.4.11 does not recognize. Do I need to download a driver? Thank you.

  • How to handle scrap assemblies in WIP

    Hi, I have scrapped two assemblies and I have given scrap account for the assemblies in Move transactions ,These scrapped assembles needs physical space say non nettable sub inventory for storage and also for further disposal but I could not able to

  • Running Vmware fusion 6

    I have a 13-inch, Early 2011 model upgraded to 8GB ram DDR3 but its running very slow, Im running 2 virtual machines (1) MS 2008 server R2 (2) MS 2012 server R2. They both have been allocated 2GB of ram each but when run simultaneously system comes t