How do remove that dot on the upper left corner

Maybe a stupid question, but I am a starter.
When I have published my site with iWeb, I see this stupid dot in the upper left corner, which I haven't been able te remove.
See http://www.vanderveld.com
Any solution for this?
Thanks.
John

I don't see the dot. Try emptying your browser cache and then revisit the published site.
Safari/Empty cache... or Option/Command/E

Similar Messages

  • How to display a frame at the upper left corner of each screen?

    hi,
    below are 2 ways to display a frame at the upper left corner of each screen (i have 2 monitors).
    both work but the 2nd way is much slower. which, if any, of the 2 approaches is "more" correct?
    import java.awt.Canvas;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.DisplayMode;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseAdapter;
    import java.awt.GraphicsConfiguration;
    import java.awt.GraphicsDevice;
    import java.awt.GraphicsEnvironment;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.Toolkit;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    // the thing that matters in here is setting the frame's location: xCoord
    // is incremented in each iteration by the current screen's width and
    // is used to set the frame's x-coordinate.
    public static void main(String args[])
          GraphicsEnvironment gEnviron = GraphicsEnvironment.getLocalGraphicsEnvironment();
          GraphicsDevice[]    gDevices = gEnviron.getScreenDevices();
          Color colors[] = {Color.blue, Color.red};
          for(int i = 0, xCoord = 0; i < gDevices.length; i++)
             // set panel's size and frame's size to take up the whole screen
             DisplayMode didsplayMode = gDevices.getDisplayMode();
    int screenWidth = didsplayMode.getWidth();
    int screenHeight = didsplayMode.getHeight();
    JPanel panel = new JPanel();
    panel.setBackground(colors[i % colors.length]);
    JFrame frame = new JFrame();
    frame.setSize(new Dimension(screenWidth, screenHeight));
    frame.setContentPane(panel);
    frame.setUndecorated(true);
    // set location of frame.
    frame.setLocation(xCoord, 0);
    xCoord += screenWidth;
    frame.addMouseListener
    new MouseAdapter()
    public void mousePressed(MouseEvent event) {System.exit(1);}
    frame.setVisible(true);
    // this is a lot slower and may not be correct: it sets the frame's location by calling
    // getConfigurations() on each screen device but using only the 1st configuration
    // (it returns 6 on my computer) to get the bounds (for the frame's x-coord).
    // a screen device has 1 or more configuration objects but do all the objects
    // of the device report the same bounds? if the anwser is yes, then the code
    // is correct, but i'm not sure.
    public static void main1(String args[])
    GraphicsEnvironment gEnviron = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] gDevices = gEnviron.getScreenDevices();
    Color colors[] = {Color.blue, Color.red};
    for(int i = 0; i < gDevices.length; i++)
    // set panel's size and frame's size to take up the whole screen
    DisplayMode didsplayMode = gDevices[i].getDisplayMode();
    int screenWidth = didsplayMode.getWidth();
    int screenHeight = didsplayMode.getHeight();
    JPanel panel = new JPanel();
    panel.setBackground(colors[i % colors.length]);
    JFrame frame = new JFrame();
    frame.setSize(new Dimension(screenWidth, screenHeight));
    frame.setContentPane(panel);
    frame.setUndecorated(true);
    // set location of frame: getConfigurations() is very time consuming
    GraphicsConfiguration[] gConfig = gDevices[i].getConfigurations();
    // on my computer: gConfig.length == 6. using the 1st from each set of configs
    Rectangle gConfigBounds = gConfig[0].getBounds();
    frame.setLocation(gConfigBounds.x, gConfigBounds.y);
    frame.addMouseListener
    new MouseAdapter()
    public void mousePressed(MouseEvent event) {System.exit(1);}
    frame.setVisible(true);
    thank you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Darryl.Burke wrote:
    Blocked one abusive post.
    @flounder
    Please watch your language.
    dbDude - I just looked at your profile. WTF are you doing in India??

  • What's the RIGHT way to draw an image in the upper left corner?

    I have an NSView in a ScrollView and I'm trying to draw an image in it. The problem is that I want the upper left corner of the image locked to the upper left corner of the frame, instead of the lower left corner, which is what the View wants me to do. I will need to be able to zoom in and out, and rotate.
    currently, I have a kludge of a system where I calculate how much I have to translate my image based on the size of the image and the size of the window. In order to do this, I needed to create an extra view outside the scrollview, so that I could get the size of the window, not including decorations. Then I can calculate the size of the view based on the size of the image and the size of the window, and based on THAT, I can figure out where to translate the image to.
    My only other thought was to use the isFlipped: method, but that ends up reversing my image L-R which is bad.
    Is there another way I should be doing this?
    thanks.

    Ah, the problem is that the content view includes the control panel, and while I'm sure I can get access to the control panel, and find out it's size, and then calculate everything off that, it becomes messy, and my way is easier, and no more messy.
    And I never said this was HARD. I have already DONE it. It's just ugly, and I'm wondering if there is a better way to do it. Translating between coordinate systems is normal, but changing lower left to upper left origin is an artifact of the Mac's history with PDF and PS.
    If the way I'm doing it is the accepted normal way, then fine, just tell me that.

  • I seem to have lost the red, yellow and green dots that are in the upper left hand corner that close  or minimize the page.

    I seem to have lost the red, green, and yellow dots that are in the upper left hand corner that close or minimize the page.  How can I get them back?

    You may have to try a general OS X troubleshooting process to see if the issue goes away by doing this...
    Have you tried: starting the computer in SafeBoot mode, with shift key held down; a login screen should appear after a time, and then the regular desktop. At this point, locate Disk Utility in utilities folder, and run 'repair disk permissions' on the startup volume, usually the name given the hard disk drive as it appears on desktop. After Disk Utility is finished the permissions repair, restart the computer normally.
    ...The iTunes player has free support only through the duration of the hardware product's complementary or AppleCare extended plan coverages, so though you can download a newer version, that is not the same as free support for an issue. However, the iTunes Store or App Store has a different factor for their product.
    http://www.apple.com/support/itunes/
    There is an iTunes area in Apple Support Community discussions for more topics like this; except for when they involve a hardware product where an OS X is involved. If your computer is NOT a powerPC (an 'intel'-mac) the topic would more naturally need to be posted where that hardware and later supported OS X version topics get seen. So that is why one asks 'on what Mac running what version...' instead of writing four paragraphs in a wide angle reply. The details about your iMac and the OS X say more; without them, more questions arise.
    Good luck & happy computing!

  • I have this question mark (?) in the upper left corner of my Finder windows. Anyone know what's up with that, what it might portend, and how to get rid of it?

    I have this question mark (?) in the upper left corner of my Finder windows. Anyone know what's up with that, what it might portend, and how to get rid of it?

    Are you sure you have a PowerMac? They can't run Mac OS 10.6.8. Maybe a Mac Pro instead?
    Can you post a screen shot of that portion of the screeen for us to review? Does the question mark replace the Apple that's at the left end of the menubar?

  • On the most upper left of the Title Bar (the part where the x box is on the right side) where the Firefox icon should be (on the upper left corner) I have a printer icon instead. Why did that happen and how do I change it? Thanks for any help.

    On the most upper left of the Title Bar (the part where the x box is on the right side) where the Firefox icon should be (on the upper left corner) I have a printer icon instead. Why did that happen and how do I change it? Thanks for any help.

    I don't actually have an answer for you, but ditto on changing things that aren't broken. Drives me crazy!!

  • How do I get rid of yahoo toolbar and get back my orange firefox button in the upper left corner of screen so I can use my stuff again?

    Yahoo toolbar suddenly imposed itself as my log on screen whenever I booted up my computer and clicked on Firefox. Now I can't get to my bookmarks even though it told me that if I activated the new bookmark system it would transfer my old ones. It didn't happen. The toolbar has no bar for typing in a www.http address. I cannot use it and don't want it. I am using Explorer just so I can access my bookmark address, but don't like Explorer. I want my old Firefox screen back that has the little orange button in the upper left corner of the screen. How can I get there? My computer use has been highly curtailed by this unrequested invasion!

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: command+Shift+F).<br />
    If you are in full screen mode then hover the mouse to the top to make the Navigation Toolbar and Tab bar appear.<br />
    You can click the Maximize button at the top right to leave full screen mode or right click empty space on a toolbar and use "Exit Full Screen Mode" or press F11.<br />
    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    *https://support.mozilla.com/kb/Menu+bar+is+missing
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    *Open the Customize window via "View > Toolbars > Customize"
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • How to replace the LabVIEW icon in the upper left corner of panels?

    Hi Gang,
    We're going to create an application that will go to customers.  We want to replace the LabVIEW icon in the upper left corner of panels with the company logo.  How do I replace that?
    All responses will be appreciated.
    Thanks in Advance,
    Roger
    Solved!
    Go to Solution.

    As rolfk said, edit the icon in the build specification.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Edit EXE Icon.png ‏36 KB

  • One website appears small and in the upper left corner of the screen - how do I fix

    A website that used to appear normal on my screen now has shrunk and is at the upper left corner of the screen. It is too small for me to use. How do I get the website to appear normal size again? I already tried "Full Screen" option and that does not fix the problem. I am using Firefox 16.0.2 and Windows 7.

    @jack, resetting the zoom level is already covered in the help article ;-)

  • Illustrator CS 6 won't paste into a text box/paragraph of text, instead pastes a new line of text in the upper left corner of my document. How can I get it to paste into the selected paragraph or highlighted text like normal?

    I've done it a million times, I copy a selection of type...I select the type that I want to replace it with, and then I paste. Now, Illustrator will only paste the text as a "point text" (a single line) somewhere else on the artboard—it seems to always be the upper left corner of the art board.

    peg,
    In cases of sudden appearance of strangenesses, the list may be relevant, hopefully the easy part at the top.
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • I've lost the orange firefox tab with the arrow, that was in the top left corner: how do I get it back?

    I've lost the orange firefox tab with the arrow, that was in the top left corner: how do I get it back?

    In current Firefox releases (29 and later), that have have the Australis user interface, the orange Firefox menu button has been replaced by the three-bar Firefox Menu button at the far right end of the Navigation Toolbar and this button is always visible, whether you have the menu bar visible or hidden<br>A consequence of this location is that you no longer can hide the Navigation Toolbar
    *There is a star like button to the right end of the search bar on the Navigation Toolbar to bookmark the current web page and a "Show your bookmarks" button next to it to open the Bookmarks in a drop down menu.<br>You can find "Show All Bookmarks" to open the Bookmarks Manager (Library) at the bottom of this drop-down list
    *It is still possible to have the menu bar visible via the right-click context menu on the toolbars to have menus like the Bookmarks menu
    *<br>*If you bookmark a page then "Bookmark This Page" in the Bookmarks menu changes to "Edit This Bookmark"
    See also:
    *https://support.mozilla.org/kb/how-to-make-new-firefox-look-like-old-firefox
    *https://support.mozilla.org/kb/common-questions-after-updating-to-new-firefox
    *https://support.mozilla.org/kb/learn-more-about-the-design-of-new-firefox
    I'm locking this thread. If you still have questions then please create a new thread.

  • The red, green and yellow buttons in the upper left corner of the screen disappear whenever I open Safari.  I cannot minimize the Safari window which I often need to do if I am coordinating multiple windows.  Does anyone know how to get those buttons back

    The red, green and yellow buttons in the upper left corner of the screen disappear whenever I open Safari.  I cannot minimize the Safari window which I often need to do if I am coordinating multiple windows between different applications.  Does anyone know how to get those buttons back?  I guess I could just switch betwen appliations, but I am used to doing it the other way.

    You're welcome 
    You had Safari in full screen mode.

  • I forgot how to use the setting, move the mouse to the upper left corner and the windows become smaller for an overview?

    i forgot how to use the setting, move the mouse to the upper left corner and the windows become smaller for an overview?

    I'm not quite sure what you want - if you want an overview of all open windows, use the F key.. Otherwise please post back and be more specific.

  • I have an iPad2 and I can't delete some apps I downloaded that I don't want.  I can get the apps lto wiggle, but there is no X in the upper left corner for deletion.  Any help is much appreciated.

    I have an iPad2 and I can't delete some apps I was downloading but froze.  I can get the apps to wiggle, but there is no X in the upper left corner for deletion. I have tried re-setting and didn't work. Help will be appreciated.

    See if anything here helps.
    If the downloads are stalled or "waiting" - try these suggestions.
    Tap the "waiting" icon and see if you can pause it. If it does pause, then tap it again and see if it will resume. If that works, repeat the same steps for each "waiting" icon.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Make sure that you do not have a stalled download in iTunes - a song or podcast .... if you have a download in there that did not finish, complete that one first. Only one thing can download at a time on the iPad so that could be what is causing the problem.
    If that doesn't work - sign out of your account, restart the iPad and then sign in again.
    Settings>iTunes & App Store>Apple ID. Tap your ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Go back to Settings>iTunes & App Store>Sign in and then try to update again. Tap one waiting icon only if necessary to start the download stream.
    You can also try deleting the waiting icons - tap and hold down on an icon until it wiggles - the tap the X on the icon to delete it. Then try to download again.
    You can try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered.
    If all else fails, download the updates or the apps in iTunes on your computer and then sync the content to your iPad.

  • How do I add Show Fonts in the upper left corner of the viewer in iMovie if it is not there

    How do I add Show fonts in the upper left corner of the viewer if they do not exist?

    Hi
    You must have a Text inserted one way or the other.
    then click on the Text clip box
    and now it's there.
    You have Advance tools turned on ?
    Yours Bengt W

Maybe you are looking for

  • SQL insert with select statement having strange results

    So I have the below sql (edited a bit). Now here's the problem. I can run the select statement just fine, i get 48 rows back. When I run with the insert statement, a total of 9062 rows are inserted. What gives? <SQL> INSERT INTO mars_aes_data (rpt_id

  • Ipod updater keeps freezing

    im trying to restore my ipod nano but the updater keeps freezeng

  • FX Plug-ins - Particles

    Has anyone tried adding any of the FX plug-ins that come from CHV? I'm especially interested in the "Particle Heaven" that is list on the link below: http://www.chv-plugins.com/cms/FxPlug/FxPlug_Plugins.php?navanchor=1010000 I want to create a partic

  • Can i link 2 iphone 5's to the same PC?

    her ladyship currently has a 3GS and we have now both ordered the 5.  Can i link both devices to the same PC?  Can i use the same Apple ID? I am not a big user of apple products or itune/apps store so please don't be offended if it seems a silly ques

  • Imovie locked my project

    HiI recently was importing a clip into imovie however it froze due to low disk space and had to force quit, when i reopening imovie non of my clips play as it seems as though it has lost the links to them. As they are still in the events folder and p