How do I get Explorer to see the Navigation Bar on a site published to a CD

I built a site in iWeb and published it to a Folder on my desktop then burned the folder to a CD. It works fine in Safari but Explorer can't see the top line (the Navigation Bar) so it is useless to anyone with a PC that doesn't have Safari installed. Is there a solution?

Thanks Ethanoid, that did it. Something peculiar is happening though, Here is what the Home page looks like in iWeb:
http://idisk.me.com/f_thorgrimsson-Public/Picture 2.png/
and here is what it looks like if I "visit" from iWeb:
http://idisk.me.com/f_thorgrimsson-Public/Picture 3.png/
and this is what I see when I vist from the folder by opening index.html
http://idisk.me.com/f_thorgrimsson-Public/Picture 4.png/
?????

Similar Messages

  • I've down loaded adobe flash player but when I try to veiw video on firefox I'm still told that I need adobe flash player. How do I get firefox to see the flash player download?

    I was trying to view a video I uploaded to facebook using firefox. The system told me to down load adobe flash player. I did but still get the message that I need to down load flash player. How do I get firefox to see the down loaded adobe flash player?

    by installing from within Firefox, Internet Explorer has its own version (Active-X).
    Make sure you are starting in the correct place for Flash
    * http://www.adobe.com/software/flash/about/
    If you want to read PDF files in you browser, you might also want
    * http://get.adobe.com/reader/
    After the download,
    #bring up the download manager ("Ctrl+J") and start your installs. As soon as the install comes up,
    #close Firefox with '''File > Exit''' or "Firefox" button > Exit. Give Firefox some time to close.
    #If install does not proceed, '''terminate "firefox.exe"''' and '''"plugin-container.exe"''' from the "Processes" tab in the Windows Task Manager.
    #* Windows 7 shortcut to the WTM is "Ctrl+Shift+Esc"
    #* or on any Windows system from "Ctrl+Shift+Esc" then choose Windows Task Manager.
    #*Make sure that "firefox.exe" is no longer running -- if it is still running then terminate it by selecting the use "End Process" button or from context menu, and do the same for "plugin-container.exe" if it is found there.
    #proceed with the install.
    '''Warning''': this is the Adobe site and they have chosen to to provide crapware along with their own product. Only install the product you were planning to install. Do not install additional products: including -- "Free! McAfee Security Scan Plus" or "Google Chrome". Installing Google Chrome on your own and installing it because it is offered on the Adobe site are two different things.
    Find updates for your installed plugins at http://www.mozilla.com/plugincheck/ mozilla.com/plugincheck
    -- best to use Adobe's site to really see if their plug-ins are up to date.
    Please fix your caps lock or read what you type, do you think anybody could read my answer if I typed in all caps.
    If the above fails to correct the problem, I would try uninstalling Adobe Flash from your system entirely first, from the control panel then "Programs and Features".

  • My iMac does not see the new Toshiba external drive in Finder or Disk Utility.  How can I get it to see the drive?

    My iMac does not see the new Toshiba external drive in Finder or Disk Utility.  How can I get it to see the drive?

    From the menu bar, select
               ▹ System Preferences ▹ Energy Saver ▹ Power Adapter  
    and uncheck the box labeled Put the hard disk(s) to sleep when possible, if it's checked.
    If the drive has more than one interface (USB, FireWire, Thunderbolt, eSATA), try one of the other interfaces.
    Check that the data cable is securely inserted at both ends.
    Try a different cable.
    If you're connecting the drive through a hub, connect it directly to a built-in port on the Mac.
    If you're connecting it directly, try a different port.
    Disconnect all other devices on the bus, or as many as possible.
    Test the drive with another Mac. Test another drive with this Mac.
    If the drive is bus-powered, but has an AC adapter, connect the adapter.
    Start up in Recovery mode and launch Disk Utility. Is the drive recognized?
    Start up in Safe Mode and test.
    Reset the NVRAM.
    Reset the System Management Controller.
    If the drive doesn't work under any of the above conditions, and if another drive does work with the same Mac, then the drive is malfunctioning.

  • How can I get iPhoto to see the edited iPhone 4s photo?

    I have a new iPhone 4s.  I take a picture. I edit it and save it to the iPhone.  Then, I sync my phone with my Mac, open iPhoto.  Only the original photos appear, not the one I edited and saved.  Yet, if I e-mail the photo to myself, I can see the edited version.  So, how do I get iPhoto to see the edited version.

    8 MP is the resolution of the camera sensor.  Images are compressed when stored so quite a bit smaller.  The compression ratio depends on the level of detail in the image.

  • Part of my headphones plug broke off in the port. how do i get it out? the genius bar said their tweezers would not fit

    part of my headphones plug broke off in the port. how do i get it out? the genius bar said their tweezers would not fit

    get smaller tweezers.  you need some type of small instrument.

  • I just put my Applications in the Trash.  How do I get it back on the bottom bar?

    I just put my Applications in the Trash.  How do I get it back on the bottom bar?

    Open the Trash by holding down the Trash icon then select Open.
    Then right or control click the Applications folder then click: Put Back

  • How can i get my name on the finder bar?

    How do i get my name on the top right corner next to the search bar? I have OS X Mountain Lion 10.8.5

    System Preferences > Users & Groups
    Click the lock to unlock it, if you have to.
    Click "Login Options".
    Enable " Show fast user switching menu as" and select "Full Name".
    Best.

  • How to slow things down to see the progress bar?

    how to slow things down to let the progress bar to show its progress?
    everytime i run the program i can see only two scenario: 1. 0% 2. 100%
    i think the stuffs are too little to make any difference.
    what should i add in the codes so that i can see the progress?
    thanks!
    here is my codes:
    jProgressBar1.setValue(1);
    do some stuff here
    jProgressBar1.setValue(15);
    do some stuff
    jProgressBar1.setValue(31);
    do some stuff
    jProgressBar1.setValue(41);
    do some stuff
    jProgressBar1.setValue(61);
    do some stuff
    jProgressBar1.setValue(100);

    Hi!
    When you call update on the progress bar, the value of the progress bar is updated, but it won't be reflected on the screen until Swing has a chance to repaint. Swing can't repaint until your code is finished. So, what's happening is something like this:
    setValue(1), do stuff, setValue(15), do stuff, setValue(31), do stuff, Swing Repaint
    Also, not only does this block the progress bar from updating, but as long as your code here is running it blocks all of Swing (repainting, handling events, etc...).
    If your "stuff" isn't very time consuming, just remove the progress bar altogether. Otherwise, to make things work properly, you'll want to move it to another thread. Then, from that thread you can keep the progress bar up to date with:
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
            jProgressBar1.setValue(xxx);
    });Hope that helps!
    Shannon Hickey (Swing Team)

  • How do I get my Tabs above the Search Bar?

    Using Firefox 36.0.4 on Windows 8.1. I know there used to be a way to get my Tabs above the Search Bar, but for the life of me, I can't find it, LOL. Can anyone give me a clue, please, and thank you! Also, can we not get the Firefox button anymore instead of the "File, Edit, View," etc. at the top of the browser? I'm having a hard time changing that, too. Again, thanks for your replies.

    The Tab bar should be at the top by default in current releases.
    If that isn't the case then you likely have an extension or [http://kb.mozillazine.org/Editing_configuration code in userChrome.css] to achieve this.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    In current Firefox releases (29 and later) 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 the Menu Bar is visible or hidden.
    *There is a star like button next to 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.
    *You can find "Show All Bookmarks" to open the Bookmarks Manager (Library) at near the top of the drop-down list.
    *If you bookmark a page then "Bookmark This Page" in the Bookmarks menu as well as the tooltip of the star changes to "Edit This Bookmark".
    *You can toggle the title bar on/off via the "Title Bar" button at the bottom left in the Customize palette window.
    You can toggle the Menu Bar on/off via the right-click context menu of a toolbar to have menus like the File menu with Print (Ctrl+P) and Print Preview and the Bookmarks and History and Tools menus.

  • How do I add an image above the navigation bar?

    I'm trying to add an image above the navigation bar and can't seem to do it without covering the links. Does anyone know how to do that?
    Thanks!

    Hi,
    select the page you want to add the image to
    open up the Inspector and go to the Page Tab (second from left)
    Choose Layout and increase the size of Header Height
    Regards,
    Cédric

  • How do I get Firefox to display the information bar when a pop up is blocked

    I accidentally clicked on "Don't show this message when pop-ups are blocked" when a pop up was blocked. How do I get this message to reappear again when a pop up is blocked?
    I generally find pop ups annoying, but sometimes they are necessary to use certain websites properly. Now I can't get the information bar to come back when a pop up is blocked. How do I get it back?
    == Operating system ==
    Windows XP

    You can see a pop-up block icon in the right corner of the Status Bar if you have chosen to hide the information bar at the top.
    You can left-click that pop-up block icon on the Status Bar and remove the check mark from "Don't show info message when pop-ups are blocked"
    You can look at these prefs on the '''about:config''' page and reset them via the right-click context menu:
    Status bar icon: browser.popups.showPopupBlocker
    Info bar at the top: privacy.popups.showBrowserMessage
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • How do I get Firefox to display the information bar when a pop up is blocked I accidentally clicked on "Don't show this message when pop-ups are blocked" when a pop up was blocked. How do I get this message to reappear again when a pop up is blocked?

    I just updated Firefox but can't get it to display the message when a pop-up is blocked. Most times I want them blocked but sometimes I need them enabled.

    You can see a pop-up block icon in the right corner of the Status Bar if you have chosen to hide the information bar at the top.
    You can left-click that pop-up block icon on the Status Bar and remove the check mark from "Don't show info message when pop-ups are blocked"
    You can look at these prefs on the '''about:config''' page and reset them via the right-click context menu:
    Status bar icon: browser.popups.showPopupBlocker
    Info bar at the top: privacy.popups.showBrowserMessage
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • My Norton Tool Bar became deleted somehow. I need it so my Norton Internet Security Auto Fill feature will work. How do I get this back on the menu bar?

    My Firefox Browser page use to have a Norton Safe Search Bar within the tool bar area. It has to be active thereon otherwise the Auto Fill feature of Passwords for websites I visit - which require my user name AND password - will not be filled in automatically by the Norton Internet Security 2011 software that I have on my computer.
    My Question: HOW do I get that Norton Search Bar back on my Firefox Browser Page?

    I had the same problem before, but i figured it out. This answer might be a bit late now....
    1. Open the Norton program.
    2. Scroll under PC protection and select Run Live Update
    3. Repeat step 2 until there isn't anymore updates available.
    4. Restart the PC
    5. Open Firefox browser
    6. If the toolbar isn't there, press Ctrl+shift+A
    7. Under extensions enable the Norton toolbar.

  • How do you get [(webcrawler) searchengine]in the search bar? Or will it work with foxfire?

    I can appreciate that the search bar already has google, yahoo and bing search in it's search bar. But is there any way to put webcrawler.com in the search bar as a search engine. I tried to figure it out but with no luck. Thanks for reading my question, and any help at all would be appreciated.

    In addition to what John said, Final Cut Pro X is a digital download from the Mac App Store. To see if your MacBook meets the requirements, see > http://www.apple.com/finalcutpro/specs/ Anyway, the App Store will give you an error if your MacBook isn't compatible.
    Since the Final Cut Pro X launch, it's only available at the Mac App Store, so you can't get it in a DVD. Instead, there's an advantage: you can install it as many times as you want in all your Macs for free

  • HT4759 i have unlimieted data through ATT, but on icloud it says i have 5G of storage, how do I get it to see the ATT plan

    i want to be able to some music from clout to mhy iphone 5. I am having tow problems. Cant see any music on cloud, and through ATT i have unlimited data, but on the icloud it says i have 5GB. Can anyone help?

    Your unlimited data for AT&T is how much data you phone can download/upload.
    iCloud data is storage.
    In other words you can store 5GBs of data for free (you can buy more) on Apple's server via iCloud. They are two completely different things.

Maybe you are looking for

  • Error while creating cluster view

    Hi all, Requirement is to create cluster view copying cluster view VC_TABWU01  into custom view. CV VC_TABWU01 has two data base views V_T093C_10 and V_T093U_01 I copied them both in to ZT093U_01 and ZT093C_10 and created a CV Z_TABWU01. Field depend

  • Error After deploying a new custom page in R12

    Hi, After I deployed a new custom page in R12, I'am getting the below error when open the page: An exception occured. URL=http://ebsdev.jeddah.gov.sa:8000/OA_HTML/"OA.jsp?page=/xxjm/oracle/apps/xxper/webui/EmpSearchPG"&transactionid=1699620845&langua

  • Error in module RSQL of the datasource inter face + RSA1

    Hi All, We have installed a fresh BIW server on MSSQL database 2005. We have selected components like as ABAP.JAVA,EP,EP Core ,BI Java. While replicating the datasource  using tcode RSA1 from R/3 Retail Server we are getting an error Error in module

  • Wsdl import - no messages in Message tab

    Hi All, I'm trying to import a wsdl into external definition, there's no error, but no messages appear in the message tab. I search the prev post for some possible solutions, but so far  haven't found anything that worked yet - including importing th

  • IPhoto some photo's in my album seem to be locked for editing, how can I unlock them

    I'm quite new to using iPhoto. Now I have created several albums that I would like to have printed. However, some photo's in these albums need some editting. Normally I click the photo (in the album) and the editing tools show up. With some of the ph