Pictures overlapping in IE and Safari!

I created a website with IWeb 08'.
Everything looks fine when it is displayed in Firefox but the pictures overlapped in Internet Explorer and Safari;what's the cause?
here is the url:it's in french but you can see for yourself the pictures in IE or Safari..
http://web.mac.com/jlaferte/B&B/Bienvenue.html
JF

One your BEETHOVEN and BORDEAUX pages embed the photos in the text box itself so when the text box moves the photo move also. That will prevent the overlap you're seeing on those two page. My tutorial site is created that way: http://toadstutorials.info. On those pages I just added the photo to one line and set the justification for that line to center with the Inspector/Text/Text pane.
This demo page illustrates adding images to a text box and then using the text wraparound feature: Photos and Shapes in Text Box with Wraparound.
OT

Similar Messages

  • How can I have a picture overlap 2 pages?

    I'm having trouble having a picture overlap on two neighboring pages. Right now the picture shows on one page with the other half blanked out.
    Would appreciate any help figuring this out? This seems possible as it was done in Education event.

    Not sure (haven't tried it yet) but possibly you need to split the original image exactly in half and load each half separately. I did that in my iBook (which was made before iBooks Author became available) because the iBookstore Guidelines suggested doing so. Memory issue, maybe.

  • Spry drop down menu not working when tested in ie7, does in FF and safari on mac

    Please help! I have a spry dropdown menu on a page, when tested in FF and Safari it works fine, but when tested in IE the menus don't drop down and the styling to the over state seems to be being ignored. I have attached the code and css below.
    As I am just on the build stage it is in a template, I have not made any editable regions on the template as yet, this should not matter should it? As is probably obvious already I am quite new to this! Please help!
    CODE
    <ul id="MenuBar1" class="MenuBarHorizontal">
         <li><a href="../about us/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>about us</a>
           <ul>
             <li><a href="../calander/index.html" target="_self"><p></p>calendar</a></li>
             <li><a href="../oompah page/index.html" target="_self">oompah brass</a></li>
             <li><a href="../merchandise/index.html" target="_self"><p></p>merchandise</a></li>
           </ul>
         </li>
         <li><a href="../beer/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>beers</a>
           <ul>
             <li><a href="../beer/book a keg/index.html" target="_self"><p></p>book a keg</a></li>
           </ul>
         </li>
         <li><a href="../events/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>events</a>
           <ul>
             <li><a href="../events/oktoberfest events/index.html" target="_self"><p></p>oktoberfest events</a></li>
             <li><a href="../events/corporate/index.html" target="_self"><p></p>corporate</a></li>
             <li><a href="../events/stag hen/index.html" target="_self"><p></p>stag/ hen</a></li>
             <li><a href="../events/birthday group/index.html" target="_self">birthday/ group</a></li>
           </ul>
         </li>
         <li><a href="../sports/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>sports</a>
           <ul>
             <li><a href="../bayern supporters club/index.html" target="_self"><p></p>Bayern Munich uk</a>          </li>
    </ul>
         </li>
         <li><a href="../menu/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>food</a>
           <ul>
             <li><a href="../menu/everyday menu/index.html" target="_self"><p></p>everyday menu</a></li>
             <li><a href="../menu/special menu/index.html" target="_self">special menu</a></li>
           </ul>
         </li>
         <li><a href="../package and tickets/index.html" target="_self" class="MenuBarItemSubmenu">packages and tickets</a>
           <ul>
             <li><a href="../terms and conditions/index.html" target="_self">terms and conditions</a></li>
           </ul>
         </li>
         <li><a href="../double knuckle challenge/index.html" target="_self">double knuckle challenge</a></li>
         <li><a href="../gallery/index.html" target="_self"><p></p>gallery</a></li>
         <li><a href="../contact/index.html" target="_self"><p></p>contact us</a></li>
       </ul>
    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: 900px;
    text-align: center;
    vertical-align: middle;
    /* 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: center;
    cursor: pointer;
    width: 100px;
    float: left;
    height: 50px;
    /* 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: 100px;
    position: absolute;
    left: -1000em;
    background-color: #f8ba16;
    color: #000099;
    /* 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: 100px;
    color: #300;
    background-color: #f8ba16;
    /* 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-bottom-width: 4px;
    border-bottom-style: solid;
    border-bottom-color: #000099;
    /* 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: #000099;
    text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #33C;
    color: #FFF;
    /* 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
    background-color: #f8ba16;
    color: #300;
    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
    background-repeat: no-repeat;
    /* 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
    background-repeat: no-repeat;
    /* 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
    background-repeat: no-repeat;
    /* 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
    background-repeat: no-repeat;
    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: #FFF;
    Many thanks in advance.

    Please help! I have a spry dropdown menu on a page, when tested in FF and Safari it works fine, but when tested in IE the menus don't drop down and the styling to the over state seems to be being ignored. I have attached the code and css below.
    As I am just on the build stage it is in a template, I have not made any editable regions on the template as yet, this should not matter should it? As is probably obvious already I am quite new to this! Please help!
    CODE
    <ul id="MenuBar1" class="MenuBarHorizontal">
         <li><a href="../about us/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>about us</a>
           <ul>
             <li><a href="../calander/index.html" target="_self"><p></p>calendar</a></li>
             <li><a href="../oompah page/index.html" target="_self">oompah brass</a></li>
             <li><a href="../merchandise/index.html" target="_self"><p></p>merchandise</a></li>
           </ul>
         </li>
         <li><a href="../beer/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>beers</a>
           <ul>
             <li><a href="../beer/book a keg/index.html" target="_self"><p></p>book a keg</a></li>
           </ul>
         </li>
         <li><a href="../events/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>events</a>
           <ul>
             <li><a href="../events/oktoberfest events/index.html" target="_self"><p></p>oktoberfest events</a></li>
             <li><a href="../events/corporate/index.html" target="_self"><p></p>corporate</a></li>
             <li><a href="../events/stag hen/index.html" target="_self"><p></p>stag/ hen</a></li>
             <li><a href="../events/birthday group/index.html" target="_self">birthday/ group</a></li>
           </ul>
         </li>
         <li><a href="../sports/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>sports</a>
           <ul>
             <li><a href="../bayern supporters club/index.html" target="_self"><p></p>Bayern Munich uk</a>          </li>
    </ul>
         </li>
         <li><a href="../menu/index.html" target="_self" class="MenuBarItemSubmenu"><p></p>food</a>
           <ul>
             <li><a href="../menu/everyday menu/index.html" target="_self"><p></p>everyday menu</a></li>
             <li><a href="../menu/special menu/index.html" target="_self">special menu</a></li>
           </ul>
         </li>
         <li><a href="../package and tickets/index.html" target="_self" class="MenuBarItemSubmenu">packages and tickets</a>
           <ul>
             <li><a href="../terms and conditions/index.html" target="_self">terms and conditions</a></li>
           </ul>
         </li>
         <li><a href="../double knuckle challenge/index.html" target="_self">double knuckle challenge</a></li>
         <li><a href="../gallery/index.html" target="_self"><p></p>gallery</a></li>
         <li><a href="../contact/index.html" target="_self"><p></p>contact us</a></li>
       </ul>
    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: 900px;
    text-align: center;
    vertical-align: middle;
    /* 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: center;
    cursor: pointer;
    width: 100px;
    float: left;
    height: 50px;
    /* 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: 100px;
    position: absolute;
    left: -1000em;
    background-color: #f8ba16;
    color: #000099;
    /* 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: 100px;
    color: #300;
    background-color: #f8ba16;
    /* 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-bottom-width: 4px;
    border-bottom-style: solid;
    border-bottom-color: #000099;
    /* 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: #000099;
    text-decoration: none;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
    background-color: #33C;
    color: #FFF;
    /* 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
    background-color: #f8ba16;
    color: #300;
    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
    background-repeat: no-repeat;
    /* 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
    background-repeat: no-repeat;
    /* 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
    background-repeat: no-repeat;
    /* 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
    background-repeat: no-repeat;
    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: #FFF;
    Many thanks in advance.

  • HT1338 hi, my firefox and safari are both having difficulty loading certain parts of web pages. previous to this my firefox would freeze and state that a script was not responding. i would stop the script and reload the page and everything would be fine.

    hi, my firefox and safari are both having difficulty loading certain parts of web pages. previous to this my firefox would freeze and state that a script was not responding. i would stop the script and reload the page and everything would be fine. now though the pages just load very very slowly or load leaving out certain pictures and video content. i've tried clearing my cache's and cookies, resetting my browser etc, but it seems like its a system issue as both safari and firefox are having issues. i've run Avast to screen for malware and it came up empty. any suggestions?

    10.4.8's been a pain for Networking... not sure of all the reasons though, or whether all the complaints might not be MS working around Bugs/Non-compliance, but at this point I think you should get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, boot holding down CMD+s, then when the prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    Fixes a lot of problems, and besides, if your Mac ever gets to the point it won't Boot... this is a life saver!
    After you run that... let's see where we are.
    BTW, several ISPs seem to have trouble with their DNS Servers lately, might try these insead...
    208.67.222.222
    208.67.220.220

  • Images appear as a question mark in mail and safari

    I have just noticed a new problem in Mail and Safari.  "Some" emails that contain pictures that are links are suddenly only showing the images as a small blue square with a question mark.   If I click the "view this email in your browser" link in Mail it opens in Safari but with the same problem!  Then if I paste the URL into Firefox or Chrome the email is displayed correctly.   The email is also displayed correctly on my iPhone 6.   I really can't figure out what has changed as it is has effected emails that are filed and that displayed correctly before.   Any help appreciated.  Many thanks Phil.

    Is this perhaps an iCloud email account?
    iCloud’s Junk Filter
    As of April 2015, Apple has made its iCloud server junk filter much more aggressive. It is putting a lot more spam messages (and also some good ones) into the Junk mailbox. It also deletes some messages so that they do not appear in any mailbox. This affects all icloud.com, mac.com, and me.com e-mail accounts.
    There is no way to turn off iCloud’s junk filter and prevent it from putting messages in the Junk mailbox. There are, however, various ways to make SpamSieve put its spam into the same mailbox that iCloud’s junk filter uses. SpamSieve can even re-filter the messages in the Junk mailbox to rescue good messages that iCloud put there. However, there is no way to rescue messages that were deleted without being saved into a mailbox. Since iCloud’s junk filter cannot be disabled, your only choice is whether or not to use iCloud’s mail service as a whole. If iCloud is not meeting your needs, we recommend switching to a different mail provider.
    If it's not an iCloud email account, download the demo for Postbox and see if it will display correctly. Reasonably priced at $9.95.
    http://www.postbox-inc.com/

  • Clean Install and iChat and Safari

    My computer has reached a point where it takes 45 minutes - 3 hours to restart. Everything takes 10x longer than it should. I have tried everything i can think of (regular reinstall, limiting the number of applications running, removing peripherals etc) so unless there are other recommendations I have decided to run a clean install. I have copied all important data to an external hard drive but I am concerned about losing iChat and Safari preferences and settings. I was hoping someone could let me know the best way to carry these over.
    Thanks

    Hi G^B, Welcome to Apple Discussions.
    IChat prefs are stored online, for Safari just copy the Safari folder.
    Here is a list of where your important data is stored ("~" stands for "Home"):
    Your data in ~/Documents
    ~/Library/Application Support/AddressBook (copy the whole folder)
    ~/Library/Application Support/iCal(copy the whole folder)
    Also in ~/Library/Application Support (copy whatever else you need)
    ~ /Library/Keychains (copy the whole folder)
    ~/Library/Mail (copy the whole folder)
    ~/Library/Preferences/com.apple.mail.plist *This is a very important file which contains all email account settings and general mail preferences.
    ~ /Library/iTunes (copy the whole folder)
    ~/Library/Application Support/Safari (copy the whole folder)
    ~/Library/Application Support/iMovie (copy the whole folder)
    ~/Pictures/iPhoto library
    ~/Music/iTunes
    ~/Movies/iMovie
    If you want cookies:
    ~/Library/Cookies/Cookies.plist
    ~/Library/Application Support/Webfoundation/HTTPcookies.plist
    For Entourage users:
    Entourage is in Documents/Microsoft user data
    Also in ~ /Library/Preferences/Microsoft
    internet explorer favorites are in ~/Library/Preferences/Explorer/favorites.html
    -mj
    [email protected]

  • Chrome and Safari problem with webfont word spacing in Muse CC

    I'm designing a website using Typekit web font Open Sans 14pt. in Muse CC. When I preview page in Chrome or Safari (on Windows 7 64bit O.S.) the text doesn't display exactly word per line my Muse file. Words drop down to the next line. Almost like kerning has adjusted, but can't see it with the naked eye. However, using Chrome and Safari on my iPad, the text displays exactly the same as my Muse file - no problem. Using Firefox and Internet Explorer on the PC, no problem - text displays as per the Muse file. Problem only with Chrome and Safari on my PC. Tried playing with encoding etc in settings but no progress.

    Hey
    Thanks for the reply. This is a live site, so I had to fudge it, which I did by incorporating most of the graphic elements into a layered Photoshop file and using that as the background. Instead of using an embedded video player, I had the video poster image open a new page, with the video embedded there. Finally, I made sure that none of the tooltip windows overlapped.
    That seems to have gotten me something I can use, but I'm still curious about making ordering work as it's not always possible to design around the overlapping windows.
    Is this not a problem you've seen before?
    Overall, I'm very enthusiastic about Muse and using it in conjunction with Catalyst to allow clients to do some updating.
    Thanks!

  • I can't change the picture in the "publish and submit" window.

    I can't change the picture in the "publish and submit" window. It still has the stock "surfer" picture in place. When I try to drag another picture there, it won't stick and I cannot select and delete the "surfer" picture.

    SOLUTION
    All the three steps have to be done.
    Go in Gmail setting, seek the profile picture and change it
    Go into Gmail's Contact, seek your profile name and change the attached picture
    Clear the cache of each installed browser : file cache, cookies AND hosted apps data.
    WARNINGS
    Do NOT authorize Yosemite (during install) or Safari (after install) or any Apple applications to connect to your Google account(s) without knowing the consequences.
    Apple will NOT warn or explain you the action it will take over your Google accounts and profiles. Apple will not proceed like Gravatar or applications installed from Google Marketplace (those are obliged to warn you and ask you for authorizations with details description of the actions involved if you install an app)
    CRITICS on OSX 10.9 and 10.10
    OSX  is highly invasive in regards of Google products (not with others so far and after investigation)
    OSX takes your private and local data (profile here) and force it to be public (here by modifying your Google profile). ### Think twice if you have personal information or picture on your local computer (i.e. on your local profile) you do not want to share online ###. Apple will disregarded your private life without warning.

  • Image placement gap in IE; fine in FF on PC, Mac, and Safari

    Can anyone tell me why in IE on PC I get a gap about the photo in sidebar1? In FF on PC it renders as I want it--flush with the top and left of that div. It renders fine on Mac in FF and Safari. What am I missing? Or, is there a recommended fix?
    http://www.mgmlaw.us/IndexTest.html
    Appreciate any help or advice

    In the IE conditional comment for the sidebar, change the margin rule:
    .thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 30px; }
    to
    .thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: -30px; }
    That brings the pictures further up the page to line up with the top of the content on the right.
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • Currently running OSX 10.6.8 and Safari 5.1.10. What are the steps to update my IMAC?

    I'm currently running OSX 10.6.8 and Safari 5.1.10. What are the steps to get my IMAC totally up-to-date?

    Back up your data, check your applications for compatibility, and download Yosemite from the Mac App Store.
    (116042)

  • DivX "for Mac" and Safari -- anyone get it to work on Snow Leopard?

    Pardon me for the length of this post --  it's just a very involved question to which DivX has no answers, and I've literally wasted this entire week trying to get the so-called DivX "Bundle for Mac" to work, with absolutely no joy.
    27" iMac Core 2 Duo 3.06 GHz, 12 GB RAM, OS X 10.6.7
    Safari (v. 5.0.5 [6533.21.1])
    Safari Extensions:
    DivX HiQ 2.1.1.94
    DivX Plus Web Player HTML5 <video> 2.1.1.94
    As anyone who has used YouTube in the past year or however long this option has been available, many videos, under the regular YouTube control bar at the bottom of the video window, have an additional option: DivX HiQ, with a blue "play" button with black arrow, and in white text on black, the message "Press play for higher quality video." EVERY SINGLE time, until yesterday (about which more anon) I've selected DivX HiQ, the YouTube screen turns into the gray DivX Plus player window for a few seconds, sometimes I get a brief "Buffering…" message (sometimes not)* (see below), then a window pops up telling me "DivX Plus Web Player could not download the video, please check your internet connection." (screen shots on request).
    I have DL'd AND installed -- several times over the past few days -- DivX for Mac, version 7.3 (right up-to-date as of 11-30-10 -- great support for the Mac OS), with little or no success or noticeable results. Finally, yesterday, it somehow (I thought) installed correctly: at least instead of nothing whatsoever happening after the install, this time I was whisked magically away to <<http://www.divx.com/en/software/download/installed/mac?os=mac>> where I was rather breathlessly informed "Congratulations! You can now enjoy the highest quality digital video | divx.com." Well, this was something new -- this was the first time I'd ever gotten this far. Then I was shown many movies, promising new marvels:
    The first movie informed me "You have successfully installed DivX software." This WAS something new. Then it told me about the "DivX Plus Web Player… Now Featuring: DivX HiQ… Boost web video quality and performance… … Look for the DivX HiQ Button on your favorite video sites… see better quality and performance with a simple click… Try it out on your favorite sites… YouTube. Vimeo. And more.
    Then I played the NEXT movie, all about the DivX Plus Player, and here I TRULY saw something I'd never seen before: *a DivX Plus Player window, that actually said " Connecting… Buffering: … " and then -- mirabile dictu! -- an actual video began to play, and actually continued to play, with no stops, fits, or error windows, right up until the end. This WAS something new under the sun. It continued, extolling the manifold virtues of "DivX to go," which was of no use to me. The next video was about the DivX Plus Codec Pack, and the video told me about the wonderful things DivX could do in Windows 7, if I was brain-dead enough to USE Windows 7. Useless info, but that video, too, opened up the way I believe the *HiQ videos are supposed to open up in YouTube, for example: "Connecting… Buffering: …," and then actually opening and playing. BTW, I hate to sound like a troglodytic Luddite, but I have no idea what "MKV" video is.
    The final video, which ALSO opened up the way I believe the *HiQ videos are supposed to open up in YouTube, for example: "Connecting… Buffering: …," spoke to me about the manifold joys of DivX Plus converter, which ALSO requires the DivX Player application, and since the DivX Player application (v.7.2 (build 10_0_0_184, Copyright © 2006-2009 DivX, Inc.), which, I was given to understand, was actually a PART of the DivX software I had finally "successfully installed" (according to divx.com's delirious greeting), has never worked, none of what all these videos talked about was going to do me much good. HOW has it never worked, you ask? It has never worked in this way: I click on the DivX Player app icon, the DivX Player window opens, and the Mac OS beach ball spins merrily away, and spins, and spins, and spins -- at this point, I usually go to the kitchen for another cup of the strengthening coffee and the hopefully headache-reducing ibuprofen. When I come back, the beach ball is still spinning, so, resignedly, I go to the "Force Quit" command, where, invariably, I see the message "DivX Player not responding," and, resignedly, I force quit it. Again. This scenario has occurred without variation every single time I've tried to open the DivX Player application. It has never actually opened correctly, it has always shown up in the "Force Quit" window with the comment "DivX Player not responding," and I have always had to Force Quit it.
    Now Here's what may be termed the icing on the cake: fairly well buried in the "DivX for Mac" install package is a pdf "read me." Among many other fables is THIS whopper:
    "For online video tutorials visit the following URL in your web browser: http://go.divx.com/mac/tutorials"
    I did just that, and though the link works, there IS no page on the DivX site for "Mac tutorials." When you click on the link, you get redirected to "http://support.divx.com/faq/view/supportFAQen100/video_tutorials_main." Except for a video tutorial under "DivX Converter_ -- for which I have no use -- entitled "How To Edit Your DivX Converter for Mac Output Settings," and these two: "How To Export To DivX In Final Cut Pro for Mac," and "How To Export To DivX Using QuickTime On A Mac" -- neither of which do me the slightest bit of good, since A) I don't use, nor can I afford, Final Cut Pro, and B) what good would it to to export ANYTHING to DivX when the DivX Player for Mac does not, and has never, done anything but hang until Force Quitted?
    A brief digression on that very subject of "hanging:" there's a little section in the obscure "DivX for Mac" pdf that reads:
    "5. Known issues
    Network connection is lost during download
    A lost network connection in the middle of a download may hang the DivX Player For Mac. If this occurs, you may 'Force Quit' the DivX Player For Mac by simultaneously clicking command-option-escape and selecting the application from the list or by right-clicking the icon in the dock and selecting 'Force Quit.' You may then resume the download by re-launching the DivX Player, selecting 'Download Manager” from the File menu and clicking 'Resume.'"
    Wonderful advice, if I could ever get to the point where I was actually downloading something, but since MY particular edition of DivX Player for Mac saves me all that bother by hanging immediately upon launch, DivX has very kindly saved me the trouble of having to go through all that "Force Quit" - "Resume" nonsense. Of course, I never get to download anything or use the DivX Player on YouTube or anywhere else, so that's a bit of a downside.
    So back to the putative "Mac tutorials" on the non-existent "http://go.divx.com/mac/tutorials" page: other than the three totally non-germane examples I cited above, there is nothing that I can find on the re-direct page (http://support.divx.com/faq/view/supportFAQen100/video_tutorials_main) that is the least concerned with the usage or behavior of any component of DivX on a Macintosh computer. That's certainly not uncommon, but for a company that purports to sell products that actually work on the Mac OS X platform, EVERYTHING about the DivX site is so totally Windows-centric, one would be inclined to believe that DivX is not even aware the Mac OS X platform exists. For example, here's the list of tutorials under "DivX 101 - Learn How" on the page that, according to the DivX for Mac Read Me, was supposed to solve all my problems with running DivX on a Mac:
    Featured Video Tutorials
    How to register your PS3 for DivX VOD playback
    How do I make DivX player my default video player?
    How to register your DivX Certified device with the DivX Plus Player
    How to stream DivX Plus HD (MKV) files to your Xbox 360
    How to use the DivX Plus Converter
    Featured Text Guides
    DivX Plus Converter for Windows User Guide
    DivX Plus Player for Windows User Guide
    DivX Codec 5.x User Guide
    DivX Codec 6 and Virtual Dub Guide
    It's wonderful that DivX has tutorials dealing with XBox360 and PS3, but the Mac seems to have been lost in the shuffle -- I think, from an aesthetic point, the guy in the sideways hat and the emphasis on animé and "blow 'em up" games in what few tutorials are actually there pretty much sums up DivX's idea of their market focus. Maybe they're right, but if this "free" version, that so far I have not been able to get to work as advertised on my 27" iMac, is supposed to entice any Mac user into forking over even the piddling $20.00 for the "Pro" version, the "free" version isn't DivX any "gotta have it" favors.
    Now for the final mystery: I have two Safari -- v5.0.5 (6533.21.1) -- extensions from DivX:
    1. DivX HiQ 2.1.1.94, which is supposed to allow you to watch videos on YouTube, Vimeo, etc. in the DivX Player for Mac, but refuses to work when enabled: EVERY SINGLE time I've selected DivX HiQ, the YouTube screen turns into the gray DivX player window for a few seconds, then an error window pops up that says "DivX Plus Web Player could not download the video, please check your internet connection."
    2. DivX Plus Web Player HTML5 <video> 2.1.1.94, the little blurb in the Safari Extensions window for which says "Increase performance and video formats for your HTML5 <video>
    Clicking on the "by DivX, Inc." link in the Safari Extensions window of either of these extensions takes me to http://www.divx.com/en/software/divx-plus/web-player
    "High-quality video shouldn’t stop at your browser. DivX Plus® Web Player gives you the best web video performance around, even on sites using Flash®. The latest feature, DivX HiQ™ beta, lets you replace the default Flash player on popular sites for improved performance. Of course you can still watch stunning DivX® and DivX Plus HD (MKV) videos right in your browser, and even enjoy MKV features like multiple audio tracks, subtitles and 5.1 channel AAC audio."
    That's all well and good, but, not when it doesn't work. I don't know what the story is with these Safari Extensions: a manual (unfortunately the only way you can do it), category by category search of Apple's "Safari Extensions Gallery" turns up NO information about these extensions, neither does -- as far as I can tell -- a search of the DivX site. Am I supposed to use BOTH extensions? Neither? One or the other? Which? So far, if I use them, I get the HiQ option in YouTube (and elsewhere), but when I click on it, I get the error message above, and the window reverts to the usual plain old YouTube window. If I disable the DivX Safari extensions, I don't even get the HiQ option.
    Has ANYONE gotten the DivX for Mac Bundle v7.1, or even the DivX Plus Web Player for Mac, v2.1.1, to actually work on a Mac running OS X 10.6.7?
    If so, PLEASE tell me how you got it to work.
    I'd gladly for over the 20 bucks for this product if it actually worked, but not until it does.
    Bart Brown

    Well, I can start banging my head against the brick wall again.
    "I have never knowingly come across Divx in any shape or form. YouTube uses either Flash or HTML5."
    I don't understand how you can make that statement, considering the discussion you participated in at:
    https://discussions.apple.com/message/12210423#12210423
    under: Apple Support Communities > Mac OS & System Software > Safari > Discussions
    DivX Web Player and Safari
    ...from July 2009 to September 2010, sections of which you copied and pasted verbatim into this discussion, for example:
    "Klaus1
    Somerset, UK
    Level 7 (22,700 points)
    Re: Plug-ins
    Jul 12, 2009 2:09 PM (in response to Martin Alper)
    "...In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/"
    And on September 4, 2010:
    "Klaus1
    Somerset, UK
    Level 7 (22,700 points)
    Helpful AnswerRe: DivX Web Player and Safari
    Sep 4, 2010 5:31 AM (in response to Philippe Pauwels)
    You should read this support page http://perian.org/#support in case you need to delete older codecs. In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/"
    And, in reply to Philippe Pauwels response to the above post:
    Philippe Pauwels
    Level 1 (0 points)
    Re: DivX Web Player and Safari
    Sep 4, 2010 6:28 AM (in response to Klaus1)
    Hi,
    Thanks for your answer. After some more experimenting, i finally got it to work ... However, not every embedded DivX movie will play.
    I just deleted another codec in the Macintosh HD/Library/Quicktime folder. (One of the codecs mentioned on http://perian.org/#support was still in the folder). Before I had only deleted the files whose name has "DivX" in it.
    I did NOT install the DivX Web Player plugin.
    Now some DivX videos play, some don't... So maybe I should re-install the DivX Web Plugin? But the Web Plugin never worked for me ... If I re-install it, won't I go back to where I started?
    You replied, 10 minutes later:
    Klaus1
    Somerset, UK
    Level 7 (22,700 points)
    Re: DivX Web Player and Safari
    Sep 4, 2010 6:38 AM (in response to Philippe Pauwels)
    It could be that your previous DivX player was out of date.
    As Perian says, you need both.
    First, I certainly wish you (or my search of Apple Discussions, which, inexplicably, did not turn up this discussion) had referred me to this discussion before -- it would have saved a LOT of time.
    Now, to your reply to Philippe Pauwels:  "As Perian says, you need both." Both WHAT, exactly?
    From the initial release of Perian 0.5, September 29, 2006, to the latest release, Perian 1.2.2 - Tuesday, April 13, 2011, there is not a single mention of DivX in the entire 2006 to 2011 version history. The only information on the Perian support page regarding DivX is the paragraph that states, in part, "Please consider removing obsolete QuickTime Components: ...DivX, DivX Decoder..."
    Can you please tell me what you mean by "Perian says, you need both," in regard to putative DivX Extensions, Plug-Ins, Components, whatever?
    Finally, on July 12, 2009, you posted, in a reply to martin Alper, a list of  "the downloads and the settings you need in order to view/hear/play pretty much everything that the net can throw at you." Taking into consideration that it's 2 years later and most versions have newer updates -- including Mac OS X itself -- some items are no longer among us, and some NEW ones have shown up. could you please update or comment on this list, for the benefit of all sufferers?
    Thank you very much,
    Bart Brown
    Your list as of July 12, 2009, taking into consideration your wise caveat that "nothing in life carries a guarantee!:
    The setup described below has proved repeatedly successful on both PPC and Intel macs, but
    It is known to work in the great majority of cases with Safari 3 and 4, QT 7.4.x, 7.5.x and 7.6 and OS 10.4.11 and 10.5.7.
    Download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 11.1 for Mac from:
    http://www.versiontracker.com/dyn/moreinfo/macosx/15540
    Flip4Mac WMV Player from http://www.telestream.net/flip4mac-wmv/overview.htm (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlas h
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.
    It is suggested that you first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.
    You should also ensure that you have downloaded and installed the correct version for your Mac of Security Update 2009-001 (and for Tiger only, 2009-002). (N.B. Security Updates require both a restart and a permission repair.)
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    There is an additional 'fix' you could try if you are having problems with Flash and Quicktime, depending on which type of Mac you have:
    On Intel Macs, make sure that you are not running Safari in Rosetta. You can check this, and change it, in the Get Info window.
    On PPC Macs, go to the Hard Disk/Library/Internet Plug-Ins folder, and drag the file 'QuickTime Plugin.webplugin' to the desktop. Quit and restart Safari. If things have improved you can trash that file. If they haven't put it back, as the lack of this plug-in can cause QT content in some widgets to cease functioning.
    And there is an additional kid on the block: SilverLight. Microsoft has created their own version of what a replacement for Flash could be. You can read more about it here:
    http://silverlight.net/
    So, if you go to any sites that have been designed for this new Silverlight stuff, you can download the plug-in from here (but make certain that you are downloading SilverLight v.1.0 for OS X (10.4.8 upwards) if you are using a PPC Mac. Version 2 only works with Intel Macs:
    http://silverlight.net/GetStarted/
    Recommendation: Close all applications before installing any of the above, repair permissions, reboot, and repair permissions again.
    Thanks again
    Bart Brown
    PS: You wrote "It is a pity you chose a camera that produces video in that format! As you have discovered it is incompatible with iMovie." Uhh, I don't know where this question came from -- more stray copying and pasting, perhaps? I have no camera, and am not trying to do anything pertinent to this discussion with iMovie.

  • Mail and Safari crashing

    Not until I moved to 10.5.2 have I had so many crashes and lock ups. It's as if I'm working on a PC. The problem seems to be when I'm working in mail and Safari. I know there is no solution to this problem but I thought I should post my frustration. I've switched my browser to FireFox and will see if that helps. I will also try and find a different mail client other than Mail.

    Hi, Patrick.
    1. You wrote: "I've long had a problem with my computer going to sleep via Energy Saver automatically - it doesn't, the screen goes dark but the hard drive continues to run. So whenever I do want the computer to go to sleep, I have to do it manually."I presume the slider for Computer sleep is not set to Never?
    Check these Console logs for clues. Look for large blocks of rapidly-repeating messages being written to the logs cited in that link. This indicates a process is logging excessively, preventing sleep. Known causes of this include software distributed with Canon scanners and HP All-In-One Printer-Fax-Copier devices.
    If you find large blocks of rapidly-repeating messages, post a small sample for analysis.
    2. You wrote: "Shortly after upgrading to 10.4.5, every time I woke my machine from sleep the application Mail would crash, and I'd get the Report to Apple dialog box. I upgraded to 10.4.6, and now it happens with Safari and Mail - every time. Any suggestions?"Tow thoughts here:1. As a general check, run the procedure specified in my "Resolving Disk, Permission, and Cache Corruption" FAQ. Perform the steps therein in the order specified.
    2. See my "Multiple applications quit unexpectedly or fail to launch" FAQ for advice on troubleshooting this issue.Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Mid 2010 MacBook Pro: Will randomly blue-screen and Safari repeatedly crashes.

    I bought my MacBook Pro in June/July of last year, and it has worked perfectly fine up to this point. However, for the past 2 months or so, my computer will randomly go to a blue screen and log me out. Also, Safari will crash several times (it had never crashed on me until the blue-screen problem started. Both of these issues surfaced at the same time). For the most part, the blue-screening problem only happens when I'm using the internet, but sometimes it will happen when I am offline as well. This is an infrequent/inconsistent problem, though. It will blue-screen and Safari will crash one week, but then it will be perfectly fine for the next three or four weeks. What's wrong/how do I fix it?

    Hi JRC8.8,
    It sounds like you have been on the right track in trying to troubleshoot this issue. You may want to see if your MacBook Pro will boot directly to the Apple Hardware Test, as outlined in the following article:
    Apple Support: Using Apple Hardware Test
    http://support.apple.com/kb/ht1509
    Regards,
    - Brenden

  • Why does iTunes and Safari reset data everytime its closed

    I have a power mac G5 and after I updated to the highest software update available, I find that iTunes and Safari reset their data everytime I close them. I have checked all settings and tried resetting to regular software and trying again. Any ideas?

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.

  • My first gen. iPad exits out of apps and safari at random times when I am trying to use them. So I basically can't do anything on it. Is there some way I can fix this?

    Crashing apps. What do I do to fix it?
    My first gen. iPad exits out of apps and safari at random times when I am trying to use them. So I basically can't do anything on it. Is there some way I can fix this?

    I have the same problem.  Yahoo Sportacular aborts every time I try to open it.  It attempts to load and then the device goes right back to the home screen.  The problem started April 26 after I switched leagues from NHL to NBA. Closing all apps and Restarting doesn't solve solve the problem.
    All other apps on the iPad work fine.  IPad2, OS6.
    Any other suggestions?  I suppose I could delete the app from the iPad and try re-installing it

Maybe you are looking for

  • HP Deskjet 1510 will not print

    Hi Everyone, I am not really tech savy so please be patient. BEFORE I CONTINUE PLEASE NOTE I HAVE READ OTHER MESSAGES REGARDING THIS TOPIC HOWEVER I AM STILL AT A LOSS. I have purchased a hp deskjet 1510 printer. I am having trouble printing from a w

  • Can't Access Router Settings via 192.168.2.1

    I have recently changed modem/routers as my connection speed was increased recently and the old modem wasn't up to the task... The previous modem/router was preconfigured and I did nothing to it, however the new one requires settings be fixed by acce

  • Credit memo for non inventory item

    Hi MM consulatnats, My client need to know the best practices to handle teh credit memo for non inventory item ?? We have two options like FB65 in FI part where it wont update in PO history. In MIRO also we can make credit memo w.r.to PO. What they 

  • Write Table to file (Excel or otherwise) in background

    Hello All, I am new the ABAP programming with only self training (two weeks).  I have searched forums for 4 days trying to find usable solutions.  I am writing directly to see if someone can point me in the correct direction. I have to output data fr

  • Financials AP, PO and GL

    Hello, I'm looking for information about how AP (Payables) are storing its data. In what tables is what data and how this data is being handled throughout in the system from PO (purchasing) to AP (Payables) to GL (General Ledger)... Does anyone have