Problem displaying graphics

I wonder if someone can help me:
I had a web designer create a website for me using iweb. She uploaded it to my host (not .mac) no problem. She sent me the domain file so I could add to the website. I added some hyperlinks and text to a couple of pages. I uploaded the changes to my host and... now many of the graphics have black boxes as their background instead of blending into the background of the website. Does anybody have any ideas on how to fix this?

Hi,
in my mind I saved some posts mentioning problems while using Fetch. Maybe I'm overestimating the number of those posts but you may want to try Cyberduck instead anyway (it's free).
Also mirroring is not always reliable. Sometimes changed files don't get uploaded. You may want to try to delete the page and the folder of the page containing the content of the page from the server and re-upload the whole folder. Using mirroring it's good practice from time to time to delete the whole site from the server and re-upload it to delete obsolete files and make sure the newest version of everything gets uploaded.
It may also be that the problem lies in your browser which caches the sites (memorizes what the page looks like) so it doesn't need to reload the site next time. Which is good because it speeds up the navigation but it's bad because you don't always see what the page really looks like. So you may want to empty cache and reload (Safari=>Safari menu=>Empty cache). Cacheing is extreme for iWeb pages (that's my experience and experience of others too).
Also if you publish to a folder open the website from the folder itself, does it look ok there? If yes then it's good and you only have to upload everything. If it doesn't look good from the folder itself either then it gets a bit more complicated (but that shouldn't be the case...)
Regards,
Cédric

Similar Messages

  • CS5 Animation Timeline problems (display/graphics glitches)

    In CS5 12.0.5 x64 I use the Animation Timeline to create frame by frame animations and most of the time it works fine. However recently I am encountering a problem with the display. The problems seem to happen whenever I make a selection with the lasso and do a Free Transform (it especially doesn't like rotations). The 'marching ants' along with the entire display seems to freeze up and not respond. Clicking other layers will not change the 'frozen' image until I make a stroke with the tablet or mouse, then the image refreshes to the new selected layer, but stays frozen in the same way, and so on. The animation in the timeline will not playback through the frames/layers once this happens and I have to restart the program. Then the bug happens again as soon as I make another free transform. It doesn't seem to affect all my files, only certain ones where I use the Animation Timeline.
    I have an i7 processor with 12gb of ram and an EVGA Geforce GTX 560 Ti with the latest drivers. I have OpenGL turned off and have deleted my preferences.
    Here are my performance settings (this may be the problem?):
    I Let Photoshop Use 6319 MB (58%)
    My History States are 65
    Cache Levels are 4
    Cache Tile Size is 128K
    Scratch Disk is just C:\

    It kind of sounds like a memory or video driver issue. What resolution is your document set at?
    Mylenium is correct. When creating frame based animation each frame is linked to a layer. So to animate the motion of the selected portion it needs to be on new layers as it moves (each time you rotate or move, create a new layer. The smaller the increment the more layers needed, but will produce a smoother longer animation). The stationary portion(s) don't need to be on new layers because they are not moving and can be seen due to the transparent areas around the selection.
    I hope that  makes sense.

  • Need guidance in displaying graphics shapes on image

    I would like some help drawing a circle over an image which is displayed in JScrollpane through JLabel, The goal is, whe we click over the image, the image apperas with a small circle in the place we have clicked. I have used JLabel for displaying image in JScrollpane by using imageLabel.setIcon(new ImageIcon("default.jpg"));
    I need to draw circle/rectangle when i click on image by this i need to select different points in the image by drawing circles/rectangles over the image.
    If you understand my problem than please guide me for the same.
    Thank you

    Don't post the same question multiple times. It's rude, as it leads to people wasting their time duplicating each others' answers.
    http://forums.oracle.com/forums/message.jspa?messageID=9385315#9385315
    http://forums.oracle.com/forums/message.jspa?messageID=9385314#9385314
    Need guidance in displaying graphics shapes on image

  • Safari 7 not displaying graphics

    I loaded Mavericks a few days ago and have nothing but problems with Safari; it won't display graphics, and as another problem (probably unrelated) won't download help files.

    Just found the problem - had inadvertently checked the Disable Images in Develop tab

  • How to display graphics larger than canvas size?

    How do I display graphics larger than canvas size in Java AWT?
    I tried setting the canvas size() to a value larger than my monitor size, and then adding scroll bars to the canvas, but the scroll bars and the canvas won't go beyond the monitor size in pixels, which is only 800, so the large graphic I try to display gets cut off at the bottom.
    How can I overcome this problem? Has anybody encounter a similar dilemma before?

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    public class AWTSizing
        public static void main(String[] args)
            LargeCanvas canvas = new LargeCanvas();
            ScrollPane scrollPane = new ScrollPane();
            scrollPane.add(canvas);
            Frame f = new Frame();
            f.addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            f.add(scrollPane);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class LargeCanvas extends Canvas
        int w, h;
        final int PAD = 10;
        Rectangle r1, r2, r3;
        Rectangle[] rects;
        boolean firstTime;
        public LargeCanvas()
            w = 360;
            h = 360;
            firstTime = true;
        public void paint(Graphics g)
            super.paint(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            if(firstTime)
                initShapes();
            g2.setPaint(Color.red);
            g2.draw(r1);
            g2.draw(r2);
            g2.draw(r3);
        private void initShapes()
            r1 = new Rectangle(w/4, h/4, w/2, h*3/4);
            r2 = new Rectangle(w/2, h/2, w/2, h/2);
            r3 = new Rectangle(w*5/8, h/6, w*3/5, h*2/3);
            rects = new Rectangle[] { r1, r2, r3 };
            firstTime = false;
            invalidate();
            getScrollPane().validate();
        private ScrollPane getScrollPane()
            ScrollPane scrollPane = null;
            Component c = this;
            while((c = c.getParent()) != null)
                if(c instanceof ScrollPane)
                    scrollPane = (ScrollPane)c;
                    break;
            return scrollPane;
        public Dimension getPreferredSize()
            Dimension d = new Dimension(w, h);
            if(rects == null)                   // before calling initShapes
                return d;
            Rectangle r;
            for(int j = 0; j < rects.length; j++)
                r = rects[j];
                if(r.x + r.width + PAD > w)
                    d.width += r.x + r.width + PAD - w;
                if(r.y + r.height + PAD > h)
                    d.height += r.y + r.height + PAD - h;
            return d;
    }

  • Is Anyone Having MacBook Pro Retina Display Graphics Issues?

    So, I'm wondering if anyone has been having issues with their new MacBook Pro w/ Retina Display graphics? I've installed all the updates and ran the diagnostics. Nothing appears to be wrong, but most of my animations or motions on the computer aren't fluent and are choppy. And at least once a day I'll run into an issue like this: http://d.pr/i/elqX
    Just wondering if any of you are running into this issue. It also struggles with Flash (but I assume that is just something Adobe has to update on their end).
    Cheers!

    Think you maybe right, having looked on the Nvidia site lots of people are having major problems with the 6xx range and even the 5xx range seems like Nvidia's driver is missing something ? I know these are PC based problems but the OSX driver is still based on the same driver.
    Custom mini.
    Ps. I forgot the Nvidia driver is Optimus based...............don't get me started on how bad Optimus does not work, have a look over at the Nvidia forum Optimus section.
    Message was edited by: custom mini

  • Why is Firefox so slow following the last upgrade and doesn'y open some websites or display graphics in others?

    Pre=update Firefox was a faster and more reliable browser than IE but since this recent upgrade there are pages I visit regularly that are not loading at all. To check if there is an issue with a site I switched to IE and the page loaded immediately. Many sites I try to access with the updated version will not display graphics and since these are often online stores it makes the christmas shopping impossible with Firefox. At the moment IE functions on all these sites, it may not be my preferred browser but at least it works!

    Thanks to "itsme95" - I found the resolution to the problem was to completely uninstall Firefox, all add-ins and extensions, reboot and then re-install firefox from a download from the mozilla site. All the pages that would not load before now load quickly and correctly - so the issue was in the automated update. A lesson learned for me is to reject auto-updates and when ready download the files myself.

  • Macbook screen dying problems - display or connector?

    Hey there guys, I have a serious problem with my Macbook (2007, old style) and have had it for quite a while, but it's getting worse it seems and it's stopping me from using 1 half of my screen effectively, there is a flickering line down the left hand side of the screen which is either green or purple and when I move my display it flickers and sometimes engulfs the entire left half of the screen. Now a new problem has arose as the screen turns into an odd kind of negative effect (it isn't fully negative as it is not countered out by making the screen go actually negative).
    http://www.youtube.com/watch?v=O0wdb-W0IY0
    Now I have been to the Apple Store with this problem, but as my Macbook is out of warranty it would cost £330 for a new display, but I'm thinking of trying to fix it myself and as I see it it can be 1 of 3 problems:
    - Display is broken (buy a new display)
    - Connector is loose (reattach)
    - Connector is broken (buy a new connector)
    So my question is: do you reckon this is a display fault, or connector fault?
    Thanks a lot for reading this and helping me out if you do.

    Personally I find my MBA to work perfectly for what I use it for which is mainly school related work; Word processing, data processing and internet browsing.
    There are plenty of comparisons you can find between the MBA using a SSD to the MBP without one in an attempt to show which is faster but there's really no way to accurately compare them. A better processor and GPU will increase performance in some applications while in others an SSD would give a better output. It depends on whether what you're doing can take advantage of all your CPU's potential, and possibly use the GPU to help compute, as well as what it's actually doing and whether the HD comes into play often or not.
    The MBP has a faster processor and a better GPU. While this translates into more graphical and computing power it does have a slower HD read/write. On the other hand the MBA has a slower GPU and CPU but the SSD does make up for some of that with extreme read/write times allowing for faster data transfer.
    In the midst of all this technological babble I'll just say that you would most likely get more out of the MBP than out of the MBA. The SSD is great but it does decrease your storage amount by a good deal. However, the sheer power of the i7 makes the MBP a monster of a machine and the MBA still using a Core2Duo makes it slightly weaker overall, purely in my opinion, as I'm not looking at any spec sheets.

  • NVChannel(display): Graphics ChannelTimeout! macbookpro 2,53

    Hi,
    i have a macbookpro 2.53 and i have Nvidia geforce -400M and 9600M Gt, and i have the freezing screen.
    I can move only the cursor and the screen make a flash:
    the log is this
    NVChannel(display): Graphics ChannelTimeout!
    NVChannel(OpenGl): Graphics ChannelTimeout!
    this happen with both graphics card.
    http://www.youtube.com/watch?v=oNifwlCTqaQ (VIDEO)
    Anybody have the same problem? i've 10.5.7
    Sorry for my english
    ho fatto un video perche non riuscivo a spiegarlo
    http://www.youtube.com/watch?v=oNifwlCTqaQ
    questo il log
    Jun 22 23:51:13 Corrado kernel[0]: NVChannel(Display): Graphics channel timeout!
    Jun 22 23:51:43: --- last message repeated 2 times ---
    Jun 22 23:51:49 Corrado kernel[0]: NVChannel(OpenGL): Graphics channel timeout!
    Jun 22 23:52:02 Corrado kernel[0]: NVChannel(Display): Graphics channel timeout!
    Jun 22 23:52:32: --- last message repeated 2 times ---
    Jun 22 23:52:38 Corrado kernel[0]: NVChannel(OpenGL): Graphics channel timeout!
    Jun 22 23:52:50 Corrado kernel[0]: NVChannel(Display): Graphics channel timeout!
    mi è anche capitato proprio adesso.
    non riesco a riprodurlo, non capisco quando questo si presenta, l ho portato in assistenza e mi hanno cambiato l hard disk, ma niente di buono, perche il problema si sta ripresentando....
    macbookpro acquistato a gennaio, 2,53 Ghz 15'' 4 giga di ram, si presenta con entrambe le schede grafiche
    qualcuno sa aiutarmi? ho la 10.5.7 e ho fattotutti gli aggiornamenti

    i must reboot the mbp and i had some Kernel Panic whith the message
    Message was edited by: Barno

  • ALV GRID - How to activate the option "Display graphic"  ?

    Hello,
    I'm using
          CREATE OBJECT r_container
            EXPORTING
              container_name = 'CONTAINER'.
          CREATE OBJECT r_grid
            EXPORTING
              i_parent = r_container
    Create Event Receiver
          CREATE OBJECT cl_event_receiver.
    Populate Field Catalog
          PERFORM get_fieldcatalog.
          r_grid->set_table_for_first_display(
            CHANGING
              it_outtab        = it_table
              it_fieldcatalog  = it_fieldcat[] ).
    and, as you can see I'm display it_table specifing the field of the table (I'm not usinf dictionnary reference  ).
    My problem is:
    all run perfectly except the button "Display graphic" ( the graphic is showed but is empty).
    How to solve it ?
    tks.

    Hi,
    It will help if u can elaborate on your actual problem.
    Display graphic button?
    Where do you want to display the graphic?
    And what graphic?

  • Yahoo email display graphics in a message is broken

    FFox 4b7 has broken Yahoo email ability to selectively display graphics in emails on a per message basis. This was not the case in 4b6.

    May I ask you another question? I have another problem when doing Yahoo email while in Mozilla Firefox. The size of the font continually changes while I'm typing an email, especially if it is a reply. Also, if I type in an email address in the body of my email, the following words are underlined despite my efforts to unclick the "underline" command, and they are blue like the email address, once again despite my effort to change the font color. The screen is very jerky, too.
    Any ideas?
    cathy.dugan2

  • [svn] 3216: Fix for MXMLG-228, a visibility problem with graphic elements.

    Revision: 3216
    Author: [email protected]
    Date: 2008-09-15 18:13:11 -0700 (Mon, 15 Sep 2008)
    Log Message:
    Fix for MXMLG-228, a visibility problem with graphic elements. This is a quick fix that may force extra display objects when toggling visibility. We should investigate alternate solutions if performance is a problem.
    Bugs: MXMLG-228
    Reviewer: Deepa
    QA: Please check for performance problems when toggling visibility of a large number of graphic elements.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/MXMLG-228
    http://bugs.adobe.com/jira/browse/MXMLG-228
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/graphics/graphicsClasses/GraphicElement .as

    Hello Antonio;
    After many, many test I discovered that the problem, at least in my case it is caused by the new ACR 4.5. Please read the Thread that I post under Camera Raw. I include the link below.
    I also open two Bug Reports about this, but as usual Adobe (and other Software Companies) will never take responsability for this, until one day they release a new version with "enhancements".
    PSE6 Organizer Crash with ACR 4.5 (Vista Only?)
    http://www.adobeforums.com/webx/.3bb6a869.59b60d3e

  • Display Graphics is not working in ECC 6.0 EHP5 SAP System

    Hello All,
    We have an SAP system running  on ECC 6.0 with EHP5 installed in it.
    In UDM_Supervisor when i click on ALV Display Graphics it is not opening it is throwing the below mention error.
    When i click on the highlighted icon on the top it throws the below error.
    When i click on there is no additional information available.
    I could not locate any  Relevant SAP notes.
    Could you please help me in fixing this error.
    Thanks in advance!!!
    Regards,
    Vardhan.

    Hi,
    I don't have access to my ECC 6 system right now, I would check 2 things:
    1) it is possible that the BAdI definition class (for classic BAdIs, it is usually CL_EX_BATCH_MASTER) has been changed manually by SAP, and they removed the LOOP, or have added an EXIT right before the ENDLOOP. I know they sometimes do it.
    2) I would check if the BATCH_MASTER classic BAdI has been migrated to new BAdI, in that case I think you should migrate your BAdI implementations
    3) Just to be sure: if an implementation raises an exception, that's normal that the other implementations are not executed.
    BR
    Sandra

  • Problem displaying CLOB in text file

    Hello All,
    I have a problem displaying the content from the database in notepad. When I click on a link on my jsf screen, I retrieve the data and display it in notepad.
    I have my text content stored in the database with CLOB datatype. When I look in the database the data looks in the following format:
    ---------STARTS FROM NEXT LINE-------------
    The firm, known for its keen oversight of products, has been the subject of complaints from firms who have had apps blocked from the store. Some developers have complained that the company's rules seem inconsistent.
    Some have found apps blocked after seemingly minor updates, or for having content deemed inappropriate by them. In light of this, and after careful consideration, I believe it is unnecessary to sign this measure at this time.
    Sincerely,
    ABC
    ----------ENDS IN THE PREVIOUS LINE------------
    Now when I display this content onto the notepad, all the spaces and new line characters are lost, and the entire display looks awkward. This is how it looks:
    The firm, known for its keen oversight of products, has been the subject of complaints from firms who have had apps blocked from the store. Some developers have complained that the company's rules seem inconsistent.[]Some have found apps blocked after seemingly minor updates, or for having content deemed inappropriate by them. In light of this, and after careful consideration, I believe it is unnecessary to sign this measure at this time.[]Sincerely,[]ABC
    All the new line characters are lost and it just puts some junk character in place of a new line.
    When I copy the same text onto textpad, everything is alright and it displays exactly the way it is present in the database. I am also open to display the content in html, but in HTML it doesn't even display me the junk character in place of new line. It is just one single string without any line separators.
    I am using the following code to put the content into the text.
    public String writeMessage(){
       OutputStream outStream = null;
       HttpServletResponse response = getServletResponseFromFacesContext();
       Reader data = null;
       Writer writer = null;
       try{
          response.reset();
          response.setContentType("text/plain; charset=UTF-8");
          response.setHeader("Content-Disposition","attachment; filename="+id+"_Message.txt");
          outStream = response.getOutputStream();
          QueryRemote remote = serviceLocator.getQueriessEJB();
          data = remote.retrieveGovernorsVetoMessage(billId);
          writer = new BufferedWriter(new OutputStreamWriter( outStream, "UTF-8" ) );
          int charsRead;
          char[] cbuf = new char[1024];
          while ((charsRead = data.read(cbuf)) != -1) {
             System.out.println(charsRead);
          writer.write(cbuf, 0, charsRead);
          writer.flush();
       }catch(Exception ex){
          ex.printStackTrace();
       }finally{
          //Close outStream, data, writer
          facesContext.responseComplete();
       return null;
    }Any help or hints on resolving this issue would be highly appreciated.
    Thanks.

    The data is imported from a third party application to my database. It doesn't display any newline characters when I view the data.
    But when I do a regular expression search on text pad, I could see that my clob contains \n as the new line character. Is there a way to replace \n with \n\r while writing the data.
    Thanks.

  • Indesign CS5 crash during startup - problem with Graphics.rpln

    I work in an architectural company and already several of our computers have experienced this very rare and unusual behaviour. During start up of Indesign (not clicking on any file but just launching Indesign) it crashes with the following error:
    "Adobe Indesign CS5 has stopped working"
    We use Windows 7 64bit, so the first step I did - I went into Application Log which says, so appears to be a problem with Graphics.rpln.
    -=-=-=-=-=-=-=-=-=-=-===-=-
    Fault bucket 1848500921, type 1
    Event Name: APPCRASH
    Response: Not available
    Cab Id: 0
    Problem signature:
    P1: InDesign.exe
    P2: 7.0.0.355
    P3: 4bad00be
    P4: GRAPHICS.RPLN
    P5: 7.0.0.355
    P6: 4bad03d3
    P7: c0000005
    P8: 0004e1e2
    P9:
    P10:
    Attached files:
    C:\Users\User\AppData\Local\Temp\WER162E.tmp.WERInternalMetadata.xml
    These files may be available here:
    C:\Users\User\AppData\Local\Microsoft\Windows\WER\ReportArchive\AppCrash_InDesign.exe_b042 ec9a818cb8fb57eefe0aacb41c22fdcbb8_10c12aa8
    Analysis symbol:
    Rechecking for solution: 0
    Report Id: 9e59fc2c-5b68-11e3-908c-f46d0497fc9b
    Report Status: 0
    -=-=-=-=-=-=-=-=-=-=-===-=-
    I have tried everything I could think of - removed and reinstalled Adobe CS5, manually removed Adobe folders under %Appdata%\Local and %Appdata%\Remote folders (why can't Adobe delete those things during uninstallation is always a total mystery), changed video adapter drivers, cleaned Temp folders, everything I knew...
    None of the other apps like Photoshop or Illustrator CS5 malfunction - only Indesign. What is going on?
    Can it conflict with other software we use? We have Bentley Microstation, 3D Max, Office 2010, Kaspersky Antivirus and LOGMEIN installed on this computer...Any clues, guys?

    Looks to me like you've never installed any of the patches. Last patch for CS5 was 7.0.4, so I'd start with that and see if ti helps.

Maybe you are looking for

  • Running a java program at "Start Up"

    Besides running an html file with an applet in it. Are there any simple ways to launch a java program every time the computer is turned on. I am not asking for specific directions, but rather just an idea, and i will go find my own guide.

  • Merging multiple libraries

    On my C drive under Music- Itunes, I have multiple Itunes libraries.  There are some duplicates (don't get me started on that !).  There are regular music libraries and xml libraries.  How do I consolidate them all into one, so that when I un-install

  • API to update ap_invoices_all table

    Hello all, is there any API to update ap_invoices_all table? Please let me know. thanks,

  • ORACLE tags in Templates vs Dynamic Pages

    Hello all, I have a procedure that prints the Portal version: Create or Replace PROCEDURE MATSTESTSCHEMA.SHOW_PORTAL_VERSION as l_ver varchar2(20); BEGIN l_ver := portal30.wwctx_api.get_product_version(); htp.print(l_ver); END; I can call this proced

  • Database snapshot - usage of CPU

    Hi, I have a db and a snapshot for this db. I notice that the CPU time when a query is executed on snapshot is 8 times, in my case, greater than if the same query is executed on the original db. My question is: this behavior it's normal ? If I want t