Iweb menu bar is grey

I have uninstalled iweb and reinstalled from original install DVD, but still the menu bar is grey and Iweb launches but that's it. Everything is grey, I cteannot open or start a new project.  I've looked at old posts but cannot delete any .Plist files nor any domains as such files do not exist anyway. Can any one help please?

Try the following:
1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
     User/Home/Library/ Preferences folder.
2 - delete iWeb's cache file, Cache.db, that is located in your
User/Home/Library/Caches/com.apple.iWeb folder (Snow Leopard and Earlier).
3 - launch iWeb and try again.
NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
If that doesn't help continue with:
move the domain file from your Home/Library/Application Support/iWeb folder to the Desktop.
launch iWeb, create a new test site, save the new domain file and close iWeb.
go to the your Home/Library/Application Support/iWeb folder and delete the new domain file.
move your original domain file from the Desktop to the iWeb folder.
launch iWeb and try again.
OT

Similar Messages

  • Iweb menu bar

    i've created a pretty cool website using iweb. i've really customized it by using layers to cover the template and create my own look, however, i cannot figure out how to change the color or the font of the default fonts on the menu bar or how to place a layer behind the words to change the color of the page itself. can this be done or do i need to wait for an iweb upgrade?

    you don't have to cover up the background
    you can simply change it from the inspector, and objects from the templet you can just delete. if you want things to go behind one another
    1. right click, or ctrl-left click
    2. send to back, to front or whatever.
    3. choose what you like

  • Horizontal menu bar displays grey in IE - Please Help

    These are my first websites and i have created it in DW CS4. Everything is working and i have checked in multiply browsers. The one issue i can't work out is that when viewed in IE the horizontal menu bar looks grayed out. The main menu should be transparent with a white border, while submenus have a .gif image gradient background also with a white border.
    Please help, I would be very grateful and if you would ever find yourself in the Maldives i'm sure we could repay the favour.....
    Please find all the details below
    The URLs are
    http://www.noonudiversmaldives.com
    http://www.noonuislandretreat.com
    CSS
    @charset "UTF-8";
    /* SpryMenuBarHorizontal.css - version 0.6 - Spry Pre-Release 1.6.1 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    LAYOUT INFORMATION: describes box model, positioning, z-order
    /* The outermost container of the Menu Bar, an auto width box with no margin or padding */
    ul.MenuBarHorizontal
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: auto;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
    z-index: 1000;
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    position: relative;
    text-align: left;
    cursor: pointer;
    width: 8.5em;
    float: left;
    border: thin solid #CCC;
    /* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarHorizontal ul
    margin: 0;
    padding: 0;
    list-style-type: none;
    font-size: 100%;
    z-index: 1020;
    cursor: default;
    width: 8.2em;
    position: absolute;
    left: -1000em;
    border: thin solid #CCC;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
    left: auto;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarHorizontal ul li
    width: 8.2em;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
    ul.MenuBarHorizontal ul ul
    position: absolute;
    margin: -5% 0 0 95%;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
    left: auto;
    top: 0;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
    border: 1px solid #CCC;
    background-image: url(../background/Navboxes.gif);
    background-repeat: repeat-y;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarHorizontal a
    display: block;
    cursor: pointer;
    padding: 0.5em 0.75em;
    color: #CCC;
    text-decoration: none;
    text-align: center;
    border: thin solid #CCC;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    color: #FFFF33;
    font-weight: bold;
    border: thin solid #CCC;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
    color: #FFFF33;
    border: thin solid #CCC;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenu
    color: #CCC;
    border: thin solid #CCC;
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
    border: thin solid #CCC;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
    color: #FFFF33;
    border: thin solid #CCC;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
    color: #CCC;
    border: thin solid #CCC;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
    position: absolute;
    z-index: 1010;
    filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
    display: inline;
    f\loat: left;
    background-color: #999999;

    Hi,
    Before I give you the solution, please be advised that nothing goes above supplying an online URL. This helps us more than anything else. In fact, with an online URL ther is no need for further code.
    So, in your case, thank you for the URL.
    For the solution to your problem, just remove the red coloured part.
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
        display: inline;
        f\loat: left;
       background-color: #999999;
    I'll see you in the Maldives.
    Ben

  • How can I create my own iWeb menu bar?

    Hi!
    I would like to know how can I make a completely different menu than the ones iWeb has for my website?
    Can you explain step by step?
    Regards,

    Here's how I do it :
    http://www.wyodor.net/mfi/roodhout/How_To_Do.html
    http://www.wyodor.net/mfi/Maaskant/How_To.html
    More menus :
    http://www.wyodor.net/mfi/Maaskant/Some_Menus.html
    Menus without the explanation :
    http://www.wyodor.net/_Demo/tmf/Duckmenu.html
    http://www.wyodor.net/_Demo/FloatingMenu/Fixed.html
    http://www.wyodor.net/_Demo/FloatingMenu/DynamicFloat.html
    And lots of menus to explore :
    http://www.cssplay.co.uk/menus/

  • After preferences have been opened and closed, instead of folding back into the menu bar a grey square stays in the far left hand corner of my screen. This is then replicated on every screen. I can't seem to solve this, any ideas?

    After using the preference pane, it does not fold away back into the finder bar but leaves a grey square in the top left corner of the screen. When I switch to another screen within spaces, the grey square still appears.

    I have the exact same problem.. I tried disabling all add-ons and I'm only using the default theme... still no change. Whenever I close the preferences window it becomes an obtrusive grey square in the top left corner of the screen. It even obscures other open applications and won't disappear until I quit Firefox...

  • My menu bar is grey and has refused to change to the colour of the wall paper since i upgraded to IOS 7.1.what shouldi do

    please help onthe above

    Check Settings > General > Accessibility > Increase Contrast > Reduce Transparency. Turn this Off.

  • Creative cloud symbol grey in menu bar

    I have bought a new iMac and to get it running as fast as possibe I copyed  over my old one. Now the creative cloud in the menu bar is grey and I can't log in. I have tried to uninstall it and reinstall it without success.

    Mac migration (or Time Machine) does not always work with Cloud programs
    Uninstall... run the Cleaner... Restart your computer... Reinstall
    -http://helpx.adobe.com/creative-cloud/help/install-apps.html (and uninstall)
    -using the cleaner after uninstalling and before reinstalling will usually help
    -http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

  • How do you fix the date (day number only) in menu bar to match correct Date and Time Preferences?

    My date and time preferences all show up as correct and I get "Sun 10:54 AM" in the menu bar (correct), but when I click that to quickly get the day's date, I get "Sunday, August 5, 2011".  The '5' is the only thing that is wrong, and it has remained '5' for the last 3 days, even thought the Date & Time Preferences are correct.  Is there any easy fix for this?  I don't know if August will change to September, but the day of the week has kept up with time!

    I know how to get the full date and time, etc. to show up on the menu bar (and it shows up correctly), so it's just a little 'glitchy' thing that when you click on the date/time in the menu bar, the greyed date remains on the '5th' of August - sort of like that Groundhog Day movie!

  • In my Macbook Pro, on a few occassions, the apple menu bar blacks out. its displayed as a negative image. The desktop wallpaper get greyed out and i get a blank screen as wallpaper. No idea why this happens. I reset the system and issue gets resolved.

    In my Macbook Pro, on a few occassions, the apple menu bar blacks out. its displayed as a negative image. The desktop wallpaper get greyed out and i get a blank screen as wallpaper. No idea why this happens. I reset the system and issue gets resolved.

    AshwinVC wrote:
    I reset the system and issue gets resolved.
    How? 

  • I upgraded from 3.6 and could not get the orange Firefox button but only a grey one with misaligned commands. When I hit View/Menu Bar even this button has vanished and the screen resembles 3.6

    I use Win7 on a desktop PC. I upgraded Firefox 3.6 to 4.0. Where there should have been the orange firefox button was a grey button 'Firefox' with a small arrow. on clicking this the commands were there, but not properly aligned. There was also no minimise/maximise/exit buttons on the top right of the screen. I checked 'Help' and found no info. I then turned on View/Menu Bar. The minimise/maximise/exit buttons appeared; the grey button vanished and the screen now resembles FF 3.6. However About tells me that I am using 4.0.
    BTW, I also tried various Beta versions in 2010 and abadnoned them because the same problem happened.

    The orange Firefox menu button will only appear if the menu bar is hidden.<br />
    Are you using a custom theme (Tools > Add-ons > Appearance/Themes) ?
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • I selected a clip in the Project window in iMovie 11, opened the Clip Trimmer for that clip, chose the part of the clip I wanted to keep with the yellow bars, and "trim to Selection" in the menu bar is light grey so I can't complete the edit. I'm using a

    I selected a clip in the Project window in iMovie 11, opened the Clip Trimmer for that clip, chose the part of the clip I wanted to keep with the yellow bars, and "trim to Selection" in the menu bar is light grey so I can't complete the edit.
    I'm using a MacbookPro so can't right click to highlight (as was suggested in this forum for the same problem) and can't seem to highlight that area. What do I do?

    When using the Clip Trimmer, you click DONE to indocate that you are finished.
    The Trim To Selection is a great tool and I use it all the time, but you use it in the main project timeline, not the clip trimmer. Just select the frames you want so that the yellow border is around them. Then right-click and select Trim to Selection.

  • Cut and paste files by dragging in finder is only possible by giving my password. in the menu bar cmd x is depicted in grey so not available. How to c

    I can only cut and paste files in finder (with the mouse) when i give my password at every single action. This is too time consuming of course. The option in the menue bar cmd x is depicted in grey in stead of black, thus not possible. How to solve this? I use the lion version.

    Wow, thanks for the tip!  Should've known Apple wouldn't have made it any easier for us to tap this hidden function. 
    In the meantime I've gone back to Snow Leopard on my MacBook Pro 13" 2010 model, where I use PathFinder as a Finder alternative that allows cutting and pasting, among other features I like (such as enlarging the default sidebar icon sizes in 10.6.8).  My battery life was cut in half with Lion and most of the new features have been supplemented in Snow Leopard by third-party utilities.  The only missing feature is iCloud, but I'm convinced Apple will backhaul this functionality to Snow Leopard at some time.  Otherwise frustrated Snow Leopard users will move to Windows to move up to the cloud!

  • Default menu bar - what can I do with this ver. of iWeb?

    iWeb default setup ... them = 'white'
    Menu items\text:
    My first page won't let me capitalize the title (home). I don't want to actually, but:
    My other pages won't let me NOT capitalize the menu item titles.
    So I'm stuck having an uncapped first menu item, then all the rest are capped.
    Is there ANY way to now change the fonts\colors on these default menus?
    If not, what would be the most practical way for me to create my own menu bar? Or can I easily replace the default menu bar with my own, after the fact, by just re-linking the pages?
    All ears,
    Ben

    Hello Ben,
    Creating your own menu is really easy and oftentimes it works better that the original one.
    First to remove the original menu go to the inspector on the page tab, and uncheck the display navigation menu item. Then on your page make a text box and type in the names that you want for your pages select each name (one at a time) and click on the link inspector tab (that is the second one from the right) click on activate link and choose one of my pages in the window, select the page and you are done.
    Hope this helps
    Mireille

  • Can you change the colour of the menu bar, it's grey, you have a job to see bookmarks,history,printer icons. Is there a way to colour them to make them easier to see.Already using large icons, but still difficult to see icons for elderly relative.

    FF4 superb, install it yeasterday, but the only gripe is the grey menu bar, been in to customize, but no opitions to change/ add colour.

    You can do that by using a theme such as Firefox 3 theme for Firefox 4 - https://addons.mozilla.org/firefox/addon/firefox-3-theme-for-firefox

  • Icon airport disappeared from menu bar,only see grey space

    icon airport disappeared from menu bar,only see grey space

    Open your System Preferences and go to the "Network" pane. Enable "Show Wi-Fi status in Menu Bar".

Maybe you are looking for

  • How to make wild card search for a file using utl_file

    Hi Everyone, I want to write to a table from flat file.im using 9i release 2. can i perform filename* (wildcard) search n write to the matching files. Regards Manish

  • Placed PDF issue - Highlights missing

    Does anyone know why the highlights that I've made to many PDF's are not showing up when placed in an ID CS4 file?  I'm trying to make work instructions and really need this text highlighted.  Is there another way I can achieve this if the PDF isn't

  • STO between 2 company codes

    Hi Experts,                Can anybody  help me in explaining the procedure of STO between 2 company codes

  • Help - Problems with JScrollPane

    I am bulding an application which displays several data base records. I want to build a scrolling display which would allow the list to be various sizes. However, in setting up the code for JScrollPane, I cannot get the definitions correct because th

  • Active workspace in DTR deleted

    Hi, The issue is that the active workspace of a DC in DTR has got deleted. Inactive workspace is available. Is there any way to create a new active workspace by copying the inactive workspace? What is the best solution to correct this issue? Thanks &