Spinning Beachball when Preview in Browser is selected

I've spent several hours looking at the threads for slow
Dreamweaver, and have yet to find anything that works for me.
Whenever I choose, Preview in Browser, I get a spinning beachball,
and the page finally loads after 30-60 seconds.
I'm using an Intel Mac on a localhost server. Everything was
OK until recently. Now it's just too time consuming to wait to see
previews. Any original thoughts from the forum or anyone at
Adobe?

"don_langevin" <[email protected]> wrote in
message
news:g64lec$2vi$[email protected]..
> I've spent several hours looking at the threads for slow
Dreamweaver, and
> have
> yet to find anything that works for me. Whenever I
choose, Preview in
> Browser,
> I get a spinning beachball, and the page finally loads
after 30-60
> seconds.
> I'm using an Intel Mac on a localhost server. Everything
was OK until
> recently. Now it's just too time consuming to wait to
see previews. Any
> original thoughts from the forum or anyone at Adobe?
I'm sorry that I don't know the solution to what you
describe. But I wanted
to mention that I have barely, if at all, used the Preview
feature in the
past year or two (and many web sites built).
Dreamweaver's Design View is pretty accurate in the later
versions, so I
tend to use it to get a general idea of the layout I'm
producing, uploading
the files to the server to check them in real browsers.
Patty Ayers | www.WebDevBiz.com
Free Articles on the Business of Web Development
Web Design Contract, Estimate Request Form, Estimate
Worksheet

Similar Messages

  • Spinning beachball when applying adjustments

    Hi there,
    I'm new Aperture user, moving away from iPhoto. I love the tools Aperture offers but I am getting the "spinning beachball" every time apply an adjustment and then brush in a mask. It specifically happens when I zoom-in, brush-in a mask and then use the sliders to make my adjustment. It takes the system 10-20 mins to come back to normal state (and sometimes it freezes and have to shut-it down by holding the power button).
    This does not seems like a normal behavior to me. Anybody else experiencing the same issue? I am not running any plug-ins, my images are .jpgs (3872x2592). I am running Aperture on an iMac 2.4 GHz Core duo 2 w/ 4GB RAM.
    Cheers,
    -g

    Aperture is a heavy pro graphics app that is very demanding of hardware. Your Mac is limiting to Aperture so we need to do what we can to optimize.
    Some generic advice I posted in another thread:
    • Set Previews to only be built manually, and only tell Aperture to build Previews when you are not otherwise editing in Aperture.
    • Keep the internal drive underfilled for speed, which sooner or later usually requires using a Referenced-Masters-Library with Masters on external drives. Back up originals before importing into Aperture or any other images app.
    • The Aperture Library should be on an internal drive.
    • Turn off Share Previews with iLife and iWork.
    • Remember that HDs slow as they fill and keep the internal drive underfilled. Approx. 70% full maximum is a good guideline.
    • If page outs increase significantly during operation try to run Aperture by itself. On my C2D MBP with its max of 3 GB RAM I always did a restart prior to a heavy Aperture session to clear any memory leaks and make sure no other apps were open. Browsers in particular will often suck RAM Aperture would otherwise be using.
    IMO all Aperture users who can should routinely bump RAM to at least 8 GB.
    • Some users have observed that it can take a new Aperture installation time (weeks) to stabilize. So do not panic; and allow Aperture to continue background work by not fully shutting down the computer. Personally I never fully shut down Macs except during electrical storms.
    HTH
    -Allen Wicks

  • When previewed in browser or on the server the path of my web site repeats folders. However the "href" in the html code does not show the repetition in the path.

    If someone could help me on this one, this would be great. I am creating a web site that has several departments. I have categorized and saved each department in a main folder called "departments" and a subfolder for each one. In the Dreamweaver code view the pop-up menu links seem to show up properly, but when I preview in browser or upload to server "page not found" comes up because for some reason the address changes. Some parts of the address seem to be appearing twice, sometimes the entire path will appear twice as shown below:
    http://www.graphicmechanic.com/DEKALBCOUNTY/departments/parks-and-recreation/departments/p arks-and-recreation/pr-arabiamtn-map.html
    that is incorrect and it takes me to "web page cannot be found".
    It is obviously repeating the folders (hence the "departments/parks-and-recreation" twice. The correct link is:
    http://www.graphicmechanic.com/DEKALBCOUNTY/departments/parks-and-recreation/pr-arabiamtn- map.html
    The link issues are happening in the pop-up menu. For example if you go to http://www.graphicmechanic.com/DEKALBCOUNTY/departments/parks-and-recreation/pr-arabiamtn. html and rollover the link called "Arabia Mountain" in the links to the left side of the page, then click the pop-up menu link entitled "Arabia Mountain Map" that's where the problem occurs.
    Can anyone tell me how I can fix this problem. I don't know what I should do with the code since it already appears correct in html view.
    Please help if you can...
    Thanks in advance for any possible help you can provide...

    XonoBoom wrote:
    It is obviously repeating the folders (hence the "departments/parks-and-recreation" twice. The correct link is:
    http://www.graphicmechanic.com/DEKALBCOUNTY/departments/parks-and-recreation/pr- arabiamtn-map.html
    The link issues are happening in the pop-up menu.
    This problem usually happens when the menu is either a server-side include or a library item using links relative to the document. When you reference a page at a different level of the folder hierarchy, the document-relative links no longer point to the correct destination.
    Change the links in the menu to be relative to the site root.
    A document-relative link usually looks like this:
    <a href="../products/index.html">Products</a>
    A link relative to the site root begins with a forward slash like this:
    <a href="/products/index.html">Products</a>

  • CSS styles disappear when previewed in browser.

    I created a web site following the Getting Started tutorials in Dreamweaver CS6.  However, when I preview in the browser, the main page shows properly but if i click a link, the other pages do not seem to attach to the style sheet - BUT the style sheet reference is present in the code.  Any ideas?
    thanks

    You are close to correct, but not quite there.
    If you have enabled the use of temporary files in PREFERENCES > Preview in browser, when you preview a page from DW, you will actually create a temporary page from the current one and it's that temporary page that is displayed in the browser. Why create a temporary page to preview? Well, if your page's code contains any root relative links (as opposed to document relative links) then those will not work if the page is previewed directly. When a temp file is built, those links in the actual page are converted to document relative links in the temp file, and this temp file is then handed to the browser to preview.
    Why don't root relative links work in a preview? When the browser sees a link like '<link href="/path_to_file.css"', it interprets the "/" as meaning the root of the HARD DRIVE, not the root of the site (browsers know nothing about DW sites), and will not find the linked file at that location (for example, C:/DW_path_to_file.css"). When those links are rewritten in the temp file being previewed as '<link href="path_to_file.css"', it works fine since the browser knows that means to look for the *.css file in the same folder as the file it is previewing.
    Make sense? By the way, this is how DW has *always* worked.

  • Spinning beachball when scrolling pages; filling forms

    1.3.1 on 10.3.9
    Didn't notice when this started, but for some time now, scrolling a page or filling out a form is cumbersome as the program hesitates, often for a few seconds, with a spinning beachball as I move around the pagee or click on buttons. eBay is especially bad. FedEx this AM was also difficult.
    I clear cache and keep a pretty tight ship. Any ideas what's going on?

    No, because the problem occurs even opening a non-form page.
    I'm thinking that it might be a bigger problem with my entire system.
    My 500mhz ibook, 640 MB RAM with the same system does not have this problem - Safari is fairly quick.
    I'm wondering is something is eating my processing speed.

  • Site won't display correctly when 'Published' to Business Catalyst but does when 'Preview' in browse

    Basically I have a subscription to Muse and with that the ability to host one site with Business Catalyst. When checking the first site I designed I'd use 'Preview in Browser' and the site occasionaly displayed incorrectly, so I changed my habits to publishing the work-in-progress site to the BC url with this current site.
    Unfortunately there are multiple display problems with doing this; the two images below show the difference between 'Publish' to the BC domain and 'Preview site in browser'.
    I've cleared the cache of the browser multiple times and used both Firefox and Safari and the problem still remains. I'm assuming it's a problem with Business Catalyst?
    Does anyone have a solution for this? Has data become corrupted in BC, and if so is there a way of 'flushing' the data held on the BC site clean to start from scratch?
    Would really appreciate some help here as it's impossible to show my client the current state of the site
    Thanks in advance
    Phil
    http://httpwiles06businesscatalystcom.businesscatalyst.com/clients.html

    Hi Phil
    I checked the site and i can see all the images in page.
    Can you try to check with a different browser or if possible on a different system or device ?
    Thanks,
    Sanjit

  • Automatic updating when preview in browser

    Hi, could anyone tell me how to get DWCS3 to prompt me to save changes to a page when I go to preview in a browser? It always used to, but now it goes direct to the preview and I have to save changes manually. What did I do?
    Jazzygeofft

    Under Edit >Preferences > Preview in Browser, if you uncheck the option for: Preview using temporary file
    you will be asked to save before you can preview in the browser of your choice.
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • Why can't Chrome find the webpage when Previewing in Browser?

    Hi -
    This is thoroughly bizarre to me.
    I can preview any site I'm working on using any browser I have except Chrome (current version 33.0.1750.152).
    As an example - when I use Preview in Browser - Chrome says "the webpage is not found" - the path to the page is:
    file://external-drive/_PROJECTS/CLIENT/_files-from-client/_SITE-031614/index.html
    My next step is to manually navigate to the page using Chrome's File/Open.  This works perfectly but when the page appears the path is different:
    file:///Volumes/external-drive/_PROJECTS/CLIENT/_files-from-client/_SITE-031614/index.html
    This second path is the same path in the Manage Sites/Site/Local Site Folder line.  All other browsers (FFox, Safari, Opera) use this second path.  But for some reason Chrome has shortened the path to an incorrect address.  Weird!
    I don't think this is related to Mavericks because it was happening before that upgrade.
    Has anyone else had this happen?  Can anyone explain how I can fix this?
    TIA your insight.
    JL2
    BTW - other details:
    Dreamweaver version 12 (CS6), Mac OS X 10.9.2.

    Stanko07 wrote:
    Hi jl200,
    I have the same problem since few weeks, and I am absolutely sure that jdaco answer isn't correct. All my files are on a desktop (iMac hard drive) all times and Dreamweaver has a problem with a preview in the Chrome browser. Few weeks ago everything was OK, so there isn't a problem with the files location. I think the problem has started after the last Dreamweaver update. Unfortunately I don't have any idea what to do to resolve this issue.
    You're right, the answer provided might be part of the problem but it's not the solution to the whole problem. My files are located on the computer too and Chrome will not preview them, sometimes, most of the time.
    I can't be asked to find out exactly why so I use Firefox or Safari.

  • Error when previewing in Browser

    I am using Captivate 8. My projects work as they should, but when I try to Preview in Browser, for some reason Captivate is triggering Microsoft Word to open. I am totally stumped on this and could really use some input.

    Check the file associations on your computer. It sounds like you may have MS Word set up as the default app to open HTM files.

  • Yosemite finder spinning beachball when opening or saving files from within any open application ... fix please!

    At my wits end with this issue, it seemed to have started with the 10.10.1 upgrade and continues with 10.10.2. Only when you are in an open application (it’s fine if I am looking at files on the desktop) and go to open or save a file the pop up window opens and then seems to open again and as I try to navigate through the files it pauses and I get a spinning beach ball for 15 seconds to a minute each time. Then the ball is gone for a few seconds and comes back again … eventually I can get to a file but it can take several minutes to get to one file through this process. The delays seem to get worse the more I try it. I have been dealing with a senior CPU adviser from Apple for the last four weeks on this issue and the conclusion after all of our testing and a half dozen data logs is that the engineers are continuing to collect information on the problem from others and will hopefully identify and fix it some time but can’t offer any further advise. As of now I am forced to run 10.8.5 (without any finder issues) on a second partition in order to do any meaningful work. I have a mid 2010 27” iMac with 16Gb ram and a 3TB fusion HD. Here’s what I have done so far to try and fix this:
    - went through all of the cleaning and maintenance items using the OnyX utility program including;
    fixing permissions, running all maintenance scripts, rebuilding system databases and deleting the system, user, internet and fonts cache.
    - running Disk Utility repair and permissions.
    - used Disk Warrior to rebuild and optimize the disk
    - tried turning off Spotlight and iCloud.
    - started up in safe mode
    - zapped the PRAM and reset the SMC
    - used terminal to delete Finder settings and disable auto-mount of network shares
    - reinstalled a combo update of 10.2.2
    - tried different user accounts
    - did a fresh install of 10.2.2. on a second partition (the problem was still duplicated here)
    I have to say I am disappointed of late with what seems  to be a lot of bugs coming out from the latest Apple software releases. Am I going to have to live with this setup and just wait for Apple to hopefully identify this as a bug and offer a fix sometime in the future?  … can anyone offer any further advise?
    EtreCheck version: 2.1.8 (121)
    Report generated February 5, 2015 at 11:42:40 AM EST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (27-inch, Mid 2010) (Technical Specifications)
        iMac - model: iMac11,3
        1 2.93 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 0/DIMM1
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM1
                4 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI Radeon HD 5750 - VRAM: 1024 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 17:51:10
    Disk Information: ℹ️
        Hitachi HDS723030BLE640 disk1 : (3 TB)
            EFI (disk1s1) <not mounted> : 210 MB
            Recovery HD (disk1s3) <not mounted>  [Recovery]: 650 MB
            iMac Mountain Lion (disk1s4) /Volumes/iMac Mountain Lion : 917.17 GB (491.51 GB free)
            Recovery HD (disk1s5) <not mounted>  [Recovery]: 650 MB
            iMac Yosemite (disk2) / : 2.19 TB (474.37 GB free)
                Core Storage: disk0s2 119.69 GB Online
                Core Storage: disk1s2 2.08 TB Online
        PIONEER DVD-RW  DVRTS09 disk5 : (1.28 GB)
            disk5s1 (disk5s1) <not mounted> : 1 KB
            Zero Hour (disk5s2) /Volumes/Zero Hour : 1.28 GB (5 MB free)
        OWC Mercury Electra 3G SSD disk0 : (120.03 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Boot OS X (disk0s3) <not mounted> : 134 MB
            iMac Yosemite (disk2) / : 2.19 TB (474.37 GB free)
                Core Storage: disk0s2 119.69 GB Online
                Core Storage: disk1s2 2.08 TB Online
    USB Information: ℹ️
        Apple Inc. iPhone
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Internal Memory Card Reader
        HP Officejet Pro L7700
        American Power Conversion Back-UPS XS 1200 FW:8.g1 .D USB FW:g1
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Motorola, Inc. Apple USB Modem
        Apple Computer, Inc. IR Receiver
        Apple Inc. Built-in iSight
    Firewire Information: ℹ️
        iomega MAC COMPANION 400mbit - 800mbit max
            EFI (disk4s1) <not mounted> : 210 MB
            iMac Yosemite CCC Backup (disk4s2) /Volumes/iMac Yosemite CCC Backup : 3.00 TB (1.50 TB free)
        LaCie d2 Quadra v3C 800mbit - 800mbit max
            EFI (disk3s1) <not mounted> : 210 MB
            iMac Yosemite Time Machine Backup (disk3s2) /Volumes/iMac Yosemite Time Machine Backup : 3.00 TB (1.22 TB free)
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Applications/Disk Warrior/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (5 - SDK 10.5) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.1.2 28859 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.1.2 28859 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.1.2 28859 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.1.2 28859 - SDK 10.7) [Click for support]
            /Applications/TechTool Pro 7.app
        [not loaded]    com.micromat.driver.spdKernel (1 - SDK 10.8) [Click for support]
        [not loaded]    com.micromat.driver.spdKernel-10-8 (1 - SDK 10.8) [Click for support]
            /Applications/Toast 7 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.TDIXController (1.4) [Click for support]
            /Applications/Utilities/HardwareMonitor.app
        [not loaded]    com.bresink.driver.BRESINKx86Monitoring (8.0) [Click for support]
            /Library/Application Support/Hotspot Shield
        [not loaded]    com.anchorfree.tun (1.1.1 - SDK 10.8) [Click for support]
            /Library/Extensions
        [loaded]    com.squirrels.airparrot.framebuffer (5 - SDK 10.10) [Click for support]
        [loaded]    com.squirrels.driver.AirParrotSpeakers (1.8 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.Belcarra.iokit.USBLAN_netpart (3.1.1 - SDK 10.6) [Click for support]
        [not loaded]    com.Belcarra.iokit.USBLAN_usbpart (3.1.1 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Control Center.HID Driver (3.4.0 - SDK 10.0) [Click for support]
        [not loaded]    com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.0) [Click for support]
        [not loaded]    com.RemoteControl.USBLAN.usbpart (3.1.1 - SDK 10.7) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchAfaTech (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergy450 (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergyXS (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchEmpia (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchVoyager (1.1) [Click for support]
        [not loaded]    com.kensington.mouseworks.iokit.KensingtonMouseDriver (3.0) [Click for support]
            /System/Library/Extensions/KensingtonMouseDriver.kext/Contents/PlugIns
        [not loaded]    com.kensington.mouseworks.driver.ADBID32Mouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID32MouseX1 (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID4Mouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID4MouseX1 (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.KMWBluetoothHIDMouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.KMWBluetoothOldHIDMouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.KMWUSBHIDMouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.USBMouseX1 (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.VirtualMouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.VirtualMouseX1 (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.iokit.KensingtonMouseDriverX1 (3.0) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.hp.help.tocgenerator.plist [Click for support]
        [running]    com.micromat.TechToolProAgent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.srs.EssentialsAgent.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.anchorfree.ajaxserver.plist [Click for support]
        [running]    com.bombich.ccchelper.plist [Click for support]
        [running]    com.elgato.EyeConnect.plist [Click for support]
        [running]    com.micromat.TechToolProDaemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.surteesstudios.hddfancontroldaemon.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
        [loaded]    info.lokiware.attachmenttamer.securetool.plist [Click for support]
        [not loaded]    openbase.plist [Click for support]
    User Launch Agents: ℹ️
        [failed]    com.google.keystone.agent.plist [Click for support] [Click for details]
        [not loaded]    com.marketcircle.daylite.pidclear.plist [Click for support]
        [not loaded]    com.microsoft.LaunchAgent.SyncServicesAgent.plist [Click for support]
        [not loaded]    com.valvesoftware.steamclean.plist [Click for support]
    User Login Items: ℹ️
        System Events    Application  (/System/Library/CoreServices/System Events.app)
        AirPort Base Station Agent    Application  (/System/Library/CoreServices/AirPort Base Station Agent.app)
        OpenDNS Updater    Application  (/Applications/Utilities/OpenDNS Updater.app)
        ChronoSyncBackgrounder    Application  (/Library/Application Support/ChronoSync/ChronoSyncBackgrounder.app)
        EyeTV Helper    Application Hidden (/Library/Application Support/EyeTV/EyeTV Helper.app)
        ChronoSync    Application Hidden (/Applications/ChronoSync.app)
        SpeechSynthesisServer    Application  (/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks /SpeechSynthesis.framework/Versions/A/SpeechSynthesisServer.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Support/AdobeResourceSynchronizer.app)
        AirCamLauncher    Application  (/Applications/AirCamLauncher.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Hardware Monitor Lite    Application Hidden (/Applications/HardwareMonitorLite.app)
        WeathrClip    Application  (/Applications/WeathrClip.app)
        DiskWarriorDaemonStarter    Application  (/Applications/Disk Warrior/DiskWarrior.app/Contents/Helpers/DiskWarriorStarter.app)
    Internet Plug-ins: ℹ️
        DirectorShockwave: Version: 11.6.5r635 [Click for support]
        Java Applet: Version: Unknown
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.4.2 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: Unknown
        Scorch: Version: ScorchNetscapePlugin 4.1.4 build 1 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
    User internet Plug-ins: ℹ️
        RealPlayer Plugin: Version: Unknown
    Safari Extensions: ℹ️
        Open in Internet Explorer
        Reload Button
        Print Plus
        clea.nr Videos
        YouTube5
        YoutubeWide
        Reload Button
    3rd Party Preference Panes: ℹ️
        APC PowerChute Personal Edition  [Click for support]
        Flash Player  [Click for support]
        Growl  [Click for support]
        HDD Fan Control  [Click for support]
        Java  [Click for support]
        MenuMeters  [Click for support]
        TechTool Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            iMac Yosemite: Disk size: 2.19 TB Disk used: 1.72 TB
        Destinations:
            iMac Yosemite Time Machine Backup [Local]
            Total size: 3.00 TB
            Total number of backups: 26
            Oldest backup: 2015-01-30 23:34:31 +0000
            Last backup: 2015-02-05 15:51:25 +0000
            Size of backup disk: Too small
                Backup size 3.00 TB < (Disk used 1.72 TB X 3)
    Top Processes by CPU: ℹ️
             6%    launchd
             4%    WindowServer
             2%    taskgated
             1%    SystemUIServer
             1%    WeathrClip
    Top Processes by Memory: ℹ️
        1.31 GB    mds_stores
        481 MB    mds
        447 MB    OnyX
        326 MB    iTunes
        275 MB    Safari
    Virtual Memory Information: ℹ️
        4.48 GB    Free RAM
        7.51 GB    Active RAM
        3.71 GB    Inactive RAM
        1.46 GB    Wired RAM
        18.79 GB    Page-ins
        29 KB    Page-outs
    Diagnostics Information: ℹ️
        Feb 5, 2015, 11:38:15 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 13815_[redacted].crash
        Feb 5, 2015, 11:29:31 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-112931_[redacted].crash
        Feb 5, 2015, 10:54:32 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 05432_[redacted].crash
        Feb 5, 2015, 10:54:22 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 05422_[redacted].crash
        Feb 5, 2015, 10:54:21 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 05421_[redacted].crash
        Feb 5, 2015, 10:54:12 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 05412_[redacted].crash
        Feb 5, 2015, 10:30:47 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-103047_[redacted].crash
        Feb 5, 2015, 09:56:26 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-0 95626_[redacted].crash
        Feb 5, 2015, 09:56:16 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-0 95616_[redacted].crash
        Feb 5, 2015, 09:56:15 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-0 95615_[redacted].crash
        Feb 5, 2015, 09:34:42 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-0 93442_[redacted].crash
        Feb 5, 2015, 09:34:33 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-0 93433_[redacted].crash
        Feb 5, 2015, 09:32:03 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-093203_[redacted].crash
        Feb 5, 2015, 08:33:19 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-083319_[redacted].crash
        Feb 5, 2015, 07:34:35 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-073435_[redacted].crash
        Feb 5, 2015, 06:35:52 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-063552_[redacted].crash
        Feb 5, 2015, 05:37:08 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-053708_[redacted].crash
        Feb 5, 2015, 03:39:40 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-033940_[redacted].crash
        Feb 5, 2015, 02:40:57 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-024057_[redacted].crash
        Feb 5, 2015, 01:42:13 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-014213_[redacted].crash
        Feb 5, 2015, 12:43:30 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-004330_[redacted].crash
        Feb 4, 2015, 11:44:45 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-234445_[redacted].crash
        Feb 4, 2015, 10:46:02 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-224602_[redacted].crash
        Feb 4, 2015, 09:47:18 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-214718_[redacted].crash
        Feb 4, 2015, 08:48:34 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-204834_[redacted].crash
        Feb 4, 2015, 07:49:50 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-194950_[redacted].crash
        Feb 4, 2015, 06:51:04 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-185104_[redacted].crash
        Feb 4, 2015, 06:44:21 PM    /Library/Logs/DiagnosticReports/???_2015-02-04-184421_[redacted].cpu_resource.d iag [Click for details]
        Feb 4, 2015, 05:53:47 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75347_[redacted].crash
        Feb 4, 2015, 05:53:37 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75337_[redacted].crash
        Feb 4, 2015, 05:53:26 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75326_[redacted].crash
        Feb 4, 2015, 05:53:16 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75316_[redacted].crash
        Feb 4, 2015, 05:53:15 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75315_[redacted].crash
        Feb 4, 2015, 05:52:13 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-175213_[redacted].crash
        Feb 4, 2015, 05:52:07 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-175207_[redacted].crash
        Feb 4, 2015, 05:48:58 PM    Self test - passed
        Feb 4, 2015, 05:41:14 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74114_[redacted].crash
        Feb 4, 2015, 05:40:53 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74053_[redacted].crash
        Feb 4, 2015, 05:40:43 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74043_[redacted].crash
        Feb 4, 2015, 05:40:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74042_[redacted].crash
        Feb 4, 2015, 05:37:29 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 73729_[redacted].crash
        Feb 4, 2015, 05:37:19 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 73719_[redacted].crash
        Feb 4, 2015, 05:36:26 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-173626_[redacted].crash
        Feb 4, 2015, 04:41:41 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64141_[redacted].crash
        Feb 4, 2015, 04:41:31 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64131_[redacted].crash
        Feb 4, 2015, 04:41:21 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64121_[redacted].crash
        Feb 4, 2015, 04:41:10 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64110_[redacted].crash
        Feb 4, 2015, 04:41:00 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64100_[redacted].crash
        Feb 4, 2015, 04:40:50 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64050_[redacted].crash
        Feb 4, 2015, 04:37:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-163742_[redacted].crash
        Feb 4, 2015, 04:37:36 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-163736_[redacted].crash
        Feb 4, 2015, 11:34:34 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-113434_[redacted].crash
        Feb 4, 2015, 10:35:47 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-103547_[redacted].crash
        Feb 4, 2015, 09:36:44 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-093644_[redacted].crash
        Feb 4, 2015, 09:34:13 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-093413_[redacted].crash
        Feb 4, 2015, 09:29:50 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-092950_[redacted].crash
        Feb 4, 2015, 09:28:49 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-092849_[redacted].crash
        Feb 4, 2015, 09:24:46 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-092446_[redacted].crash
        Feb 4, 2015, 09:24:10 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-092410_[redacted].crash
        Feb 4, 2015, 09:19:33 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-091933_[redacted].crash
        Feb 4, 2015, 09:19:24 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-091924_[redacted].crash
        Feb 4, 2015, 08:42:28 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-084228_[redacted].crash
        Feb 4, 2015, 07:43:44 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-074344_[redacted].crash

    Thanks, but this did not improve anything ....
    EtreCheck version: 2.1.8 (121)
    Report generated February 5, 2015 at 5:30:21 PM EST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (27-inch, Mid 2010) (Technical Specifications)
        iMac - model: iMac11,3
        1 2.93 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 0/DIMM1
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM1
                4 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI Radeon HD 5750 - VRAM: 1024 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 0:3:9
    Disk Information: ℹ️
        Hitachi HDS723030BLE640 disk1 : (3 TB)
            EFI (disk1s1) <not mounted> : 210 MB
            Recovery HD (disk1s3) <not mounted>  [Recovery]: 650 MB
            iMac Mountain Lion (disk1s4) /Volumes/iMac Mountain Lion : 917.17 GB (491.51 GB free)
            Recovery HD (disk1s5) <not mounted>  [Recovery]: 650 MB
            iMac Yosemite (disk2) / : 2.19 TB (474.30 GB free)
                Core Storage: disk0s2 119.69 GB Online
                Core Storage: disk1s2 2.08 TB Online
        PIONEER DVD-RW  DVRTS09 disk5 : (1.28 GB)
            disk5s1 (disk5s1) <not mounted> : 1 KB
            Zero Hour (disk5s2) /Volumes/Zero Hour : 1.28 GB (5 MB free)
        OWC Mercury Electra 3G SSD disk0 : (120.03 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Boot OS X (disk0s3) <not mounted> : 134 MB
            iMac Yosemite (disk2) / : 2.19 TB (474.30 GB free)
                Core Storage: disk0s2 119.69 GB Online
                Core Storage: disk1s2 2.08 TB Online
    USB Information: ℹ️
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Internal Memory Card Reader
        Motorola, Inc. Apple USB Modem
        American Power Conversion Back-UPS XS 1200 FW:8.g1 .D USB FW:g1
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        HP Officejet Pro L7700
        Apple Inc. Built-in iSight
        Apple Computer, Inc. IR Receiver
    Firewire Information: ℹ️
        iomega MAC COMPANION 400mbit - 800mbit max
            EFI (disk4s1) <not mounted> : 210 MB
            iMac Yosemite CCC Backup (disk4s2) /Volumes/iMac Yosemite CCC Backup : 3.00 TB (1.50 TB free)
        LaCie d2 Quadra v3C 800mbit - 800mbit max
            EFI (disk3s1) <not mounted> : 210 MB
            iMac Yosemite Time Machine Backup (disk3s2) /Volumes/iMac Yosemite Time Machine Backup : 3.00 TB (1.22 TB free)
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Applications/Disk Warrior/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (5 - SDK 10.5) [Click for support]
            /Applications/TemperatureMonitor.app
        [not loaded]    com.bresink.driver.BRESINKx86Monitoring (8.0) [Click for support]
            /Library/Application Support/Hotspot Shield
        [not loaded]    com.anchorfree.tun (1.1.1 - SDK 10.8) [Click for support]
            /Library/Extensions
        [loaded]    com.squirrels.airparrot.framebuffer (5 - SDK 10.10) [Click for support]
        [loaded]    com.squirrels.driver.AirParrotSpeakers (1.8 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.Belcarra.iokit.USBLAN_netpart (3.1.1 - SDK 10.6) [Click for support]
        [not loaded]    com.Belcarra.iokit.USBLAN_usbpart (3.1.1 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Control Center.HID Driver (3.4.0 - SDK 10.0) [Click for support]
        [not loaded]    com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.0) [Click for support]
        [not loaded]    com.RemoteControl.USBLAN.usbpart (3.1.1 - SDK 10.7) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchAfaTech (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergy450 (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchCinergyXS (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchEmpia (1.1) [Click for support]
        [not loaded]    com.elgato.driver.DontMatchVoyager (1.1) [Click for support]
        [not loaded]    com.kensington.mouseworks.iokit.KensingtonMouseDriver (3.0) [Click for support]
            /System/Library/Extensions/KensingtonMouseDriver.kext/Contents/PlugIns
        [not loaded]    com.kensington.mouseworks.driver.ADBID32Mouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID32MouseX1 (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID4Mouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.ADBID4MouseX1 (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.KMWBluetoothHIDMouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.KMWBluetoothOldHIDMouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.KMWUSBHIDMouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.USBMouseX1 (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.VirtualMouse (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.driver.VirtualMouseX1 (3.0) [Click for support]
        [not loaded]    com.kensington.mouseworks.iokit.KensingtonMouseDriverX1 (3.0) [Click for support]
            /Volumes/iMac Mountain Lion/Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hidhook (8.0 18619.1001606) [Click for support]
        [not loaded]    com.parallels.kext.hypervisor (8.0 18619.1001606) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (8.0 18619.1001606) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (8.0 18619.1001606) [Click for support]
        [not loaded]    com.parallels.kext.vnic (8.0 18619.1001606) [Click for support]
            /Volumes/iMac Mountain Lion/Applications/TechTool Pro 7.app
        [not loaded]    com.micromat.driver.spdKernel (1 - SDK 10.8) [Click for support]
        [not loaded]    com.micromat.driver.spdKernel-10-8 (1 - SDK 10.8) [Click for support]
            /Volumes/iMac Mountain Lion/Applications/Toast 7 Titanium/Toast Titanium.app
        [not loaded]    com.roxio.TDIXController (1.4) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.hp.help.tocgenerator.plist [Click for support]
        [running]    com.micromat.TechToolProAgent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.srs.EssentialsAgent.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.anchorfree.ajaxserver.plist [Click for support]
        [running]    com.bombich.ccchelper.plist [Click for support]
        [running]    com.elgato.EyeConnect.plist [Click for support]
        [running]    com.micromat.TechToolProDaemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.surteesstudios.hddfancontroldaemon.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
        [loaded]    info.lokiware.attachmenttamer.securetool.plist [Click for support]
        [not loaded]    openbase.plist [Click for support]
    User Launch Agents: ℹ️
        [not loaded]    com.marketcircle.daylite.pidclear.plist [Click for support]
        [not loaded]    com.microsoft.LaunchAgent.SyncServicesAgent.plist [Click for support]
        [not loaded]    com.valvesoftware.steamclean.plist [Click for support]
    User Login Items: ℹ️
        System Events    Application  (/System/Library/CoreServices/System Events.app)
        AirPort Base Station Agent    Application  (/System/Library/CoreServices/AirPort Base Station Agent.app)
        OpenDNS Updater    Application  (/Applications/Utilities/OpenDNS Updater.app)
        ChronoSyncBackgrounder    Application  (/Library/Application Support/ChronoSync/ChronoSyncBackgrounder.app)
        EyeTV Helper    Application Hidden (/Library/Application Support/EyeTV/EyeTV Helper.app)
        ChronoSync    Application Hidden (/Applications/ChronoSync.app)
        SpeechSynthesisServer    Application  (/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks /SpeechSynthesis.framework/Versions/A/SpeechSynthesisServer.app)
        AdobeResourceSynchronizer    Application Hidden (/Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Support/AdobeResourceSynchronizer.app)
        AirCamLauncher    Application  (/Applications/AirCamLauncher.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Hardware Monitor Lite    Application Hidden (/Applications/HardwareMonitorLite.app)
        WeathrClip    Application  (/Applications/WeathrClip.app)
        DiskWarriorDaemonStarter    Application  (/Applications/Disk Warrior/DiskWarrior.app/Contents/Helpers/DiskWarriorStarter.app)
    Internet Plug-ins: ℹ️
        DirectorShockwave: Version: 11.6.5r635 [Click for support]
        Java Applet: Version: Unknown
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.4.2 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: Unknown
        Scorch: Version: ScorchNetscapePlugin 4.1.4 build 1 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
    User internet Plug-ins: ℹ️
        RealPlayer Plugin: Version: Unknown
    Safari Extensions: ℹ️
        Open in Internet Explorer
        Reload Button
        Print Plus
        clea.nr Videos
        YouTube5
        YoutubeWide
        Reload Button
    3rd Party Preference Panes: ℹ️
        APC PowerChute Personal Edition  [Click for support]
        Flash Player  [Click for support]
        Growl  [Click for support]
        HDD Fan Control  [Click for support]
        Java  [Click for support]
        MenuMeters  [Click for support]
        TechTool Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            iMac Yosemite: Disk size: 2.19 TB Disk used: 1.72 TB
        Destinations:
            iMac Yosemite Time Machine Backup [Local]
            Total size: 3.00 TB
            Total number of backups: 30
            Oldest backup: 2015-01-30 23:34:31 +0000
            Last backup: 2015-02-05 20:57:50 +0000
            Size of backup disk: Too small
                Backup size 3.00 TB < (Disk used 1.72 TB X 3)
    Top Processes by CPU: ℹ️
             9%    Dropbox
             3%    mds
             2%    WindowServer
             1%    SystemUIServer
             0%    HardwareMonitorLite
    Top Processes by Memory: ℹ️
        1.08 GB    mds_stores
        223 MB    Safari
        120 MB    ChronoSync
        120 MB    Contacts
        103 MB    com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
        10.46 GB    Free RAM
        3.71 GB    Active RAM
        1.71 GB    Inactive RAM
        1.29 GB    Wired RAM
        2.78 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 5, 2015, 05:24:55 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-05-172455_[redacted].crash
        Feb 5, 2015, 05:22:58 PM    Self test - passed
        Feb 5, 2015, 05:13:53 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-05-171353_[redacted].crash
        Feb 5, 2015, 05:01:53 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 70153_[redacted].crash
        Feb 5, 2015, 05:01:52 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 70152_[redacted].crash
        Feb 5, 2015, 05:00:43 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-05-170043_[redacted].crash
        Feb 5, 2015, 04:23:11 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-162311_[redacted].crash
        Feb 5, 2015, 03:24:27 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-152427_[redacted].crash
        Feb 5, 2015, 03:13:07 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 51307_[redacted].crash
        Feb 5, 2015, 03:12:56 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 51256_[redacted].crash
        Feb 5, 2015, 03:12:46 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 51246_[redacted].crash
        Feb 5, 2015, 03:12:35 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 51235_[redacted].crash
        Feb 5, 2015, 03:12:25 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 51225_[redacted].crash
        Feb 5, 2015, 03:11:40 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 51140_[redacted].crash
        Feb 5, 2015, 02:25:43 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-142543_[redacted].crash
        Feb 5, 2015, 01:41:27 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 34127_[redacted].crash
        Feb 5, 2015, 01:33:43 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 33343_[redacted].crash
        Feb 5, 2015, 01:26:59 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-132659_[redacted].crash
        Feb 5, 2015, 12:28:16 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-122816_[redacted].crash
        Feb 5, 2015, 11:38:15 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 13815_[redacted].crash
        Feb 5, 2015, 11:29:31 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-112931_[redacted].crash
        Feb 5, 2015, 10:54:32 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 05432_[redacted].crash
        Feb 5, 2015, 10:54:22 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 05422_[redacted].crash
        Feb 5, 2015, 10:54:21 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 05421_[redacted].crash
        Feb 5, 2015, 10:54:12 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-1 05412_[redacted].crash
        Feb 5, 2015, 10:30:47 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-103047_[redacted].crash
        Feb 5, 2015, 09:56:26 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-0 95626_[redacted].crash
        Feb 5, 2015, 09:56:16 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-0 95616_[redacted].crash
        Feb 5, 2015, 09:56:15 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-05-0 95615_[redacted].crash
        Feb 5, 2015, 09:32:03 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-093203_[redacted].crash
        Feb 5, 2015, 08:33:19 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-083319_[redacted].crash
        Feb 5, 2015, 07:34:35 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-073435_[redacted].crash
        Feb 5, 2015, 06:35:52 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-063552_[redacted].crash
        Feb 5, 2015, 05:37:08 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-053708_[redacted].crash
        Feb 5, 2015, 04:38:24 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-043824_[redacted].crash
        Feb 5, 2015, 03:39:40 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-033940_[redacted].crash
        Feb 5, 2015, 02:40:57 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-024057_[redacted].crash
        Feb 5, 2015, 01:42:13 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-014213_[redacted].crash
        Feb 5, 2015, 12:43:30 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-05-004330_[redacted].crash
        Feb 4, 2015, 11:44:45 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-234445_[redacted].crash
        Feb 4, 2015, 10:46:02 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-224602_[redacted].crash
        Feb 4, 2015, 09:47:18 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-214718_[redacted].crash
        Feb 4, 2015, 08:48:34 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-204834_[redacted].crash
        Feb 4, 2015, 07:49:50 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-194950_[redacted].crash
        Feb 4, 2015, 06:51:04 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-185104_[redacted].crash
        Feb 4, 2015, 06:44:21 PM    /Library/Logs/DiagnosticReports/???_2015-02-04-184421_[redacted].cpu_resource.d iag [Click for details]
        Feb 4, 2015, 05:53:47 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75347_[redacted].crash
        Feb 4, 2015, 05:53:37 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75337_[redacted].crash
        Feb 4, 2015, 05:53:26 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75326_[redacted].crash
        Feb 4, 2015, 05:53:16 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75316_[redacted].crash
        Feb 4, 2015, 05:53:15 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 75315_[redacted].crash
        Feb 4, 2015, 05:52:13 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-175213_[redacted].crash
        Feb 4, 2015, 05:52:07 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-175207_[redacted].crash
        Feb 4, 2015, 05:41:24 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74124_[redacted].crash
        Feb 4, 2015, 05:41:14 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74114_[redacted].crash
        Feb 4, 2015, 05:41:03 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74103_[redacted].crash
        Feb 4, 2015, 05:40:53 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74053_[redacted].crash
        Feb 4, 2015, 05:40:43 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74043_[redacted].crash
        Feb 4, 2015, 05:40:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 74042_[redacted].crash
        Feb 4, 2015, 05:37:29 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 73729_[redacted].crash
        Feb 4, 2015, 05:37:19 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 73719_[redacted].crash
        Feb 4, 2015, 05:36:26 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-173626_[redacted].crash
        Feb 4, 2015, 04:41:41 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64141_[redacted].crash
        Feb 4, 2015, 04:41:31 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64131_[redacted].crash
        Feb 4, 2015, 04:41:21 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64121_[redacted].crash
        Feb 4, 2015, 04:41:10 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64110_[redacted].crash
        Feb 4, 2015, 04:41:00 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64100_[redacted].crash
        Feb 4, 2015, 04:40:50 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/iconservicesagent_2015-02-04-1 64050_[redacted].crash
        Feb 4, 2015, 04:37:42 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-163742_[redacted].crash
        Feb 4, 2015, 04:37:36 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-163736_[redacted].crash
        Feb 4, 2015, 11:34:34 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-113434_[redacted].crash
        Feb 4, 2015, 10:35:47 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-103547_[redacted].crash
        Feb 4, 2015, 09:36:44 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-093644_[redacted].crash
        Feb 4, 2015, 09:34:13 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-093413_[redacted].crash
        Feb 4, 2015, 09:29:50 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-092950_[redacted].crash
        Feb 4, 2015, 09:28:49 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-092849_[redacted].crash
        Feb 4, 2015, 09:24:46 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-092446_[redacted].crash
        Feb 4, 2015, 09:24:10 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/AdobeResourceSynchronizer_2015 -02-04-092410_[redacted].crash
        Feb 4, 2015, 09:19:33 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/GoogleSoftwareUpdateAgent_2015 -02-04-091933_[redacted].crash
        Feb 4, 2015, 09:19:24 AM    /Users/[red

  • Menu Widget: Text disappears when previewed in browser ?

    Hi All,
    I've created a site and have a top level page, with a sub-page.
    The site uses the Menu widget in Muse to create a menu with dropdowns for the sub-pages. However, when I preview the site in the browser, the state on the menu for the top-level page 'Normal and 'Active' functions disspears.
    It does re-appear on rollover, so the browser knows it's there, but it isn't being displayed.
    Any idea why?
    And how I can fix this?
    (Ive attached screenshots of the page within Muse and then the same page once previewed within the browser)
    As always, soloutions and replies most apprieciated!
    Browser preview
    Browser preview on rollover function
    Cheers!
    Robbie.

    Hi Robsta,
    Looking at your 1st posted image, above, I would say (recommend) that the 2nd blue guide, from the top (the header guide), should be moved down and put just below your menu ... do this on the 'master page' ... thats the header guide line ... everything 'below' that line is page content (a menu is not page content) hence content changes throughout your website ... everything 'above' that line is your header information and stays in the same place regardless which page you are on and is shown on ALL pages ...
    Now, if that doesn't fix the problem (the blue guide that needs moving, should be moved nevertheless) ... is it possible that some of the 'active' states in your menu have got messed up when you were changing your button colours? ... this would only happen if you were editing the menu with the 'Edit Together', 'unticked' ... I can see that the active state is set to grey already hence just asking ... also, sometimes if the 'header' guide is not where it should be, it does hide things below it as it doesn't know what should be shown or not ...so it's just a thought ... ...
    cheers,
    GemBro

  • Animation stops in the middle when preview in browser

    I have run into a problem where the animation stops in the middle when I preview it in browser, but it is fine when I play it in the program. Please advise how to fix this problem. Thank you very much.
    Ramon

    I've had this problem with a purchased song but never a ripped song. I think its an encoding problem with iTunes. One poster suggested converting the song, which kind of tells us that its something to do with the encoding. I can't remember the song that this happened with, some Tom Petty tune. But I do remember this, which is strange, this happened on my Touch but not the iPhone with same song.

  • Dreamweaver CC Child Page not displaying CSS when previewed in browser

    Forgive me as I'm completely new to Dreamweaver. I'm working through Dreamweaver CC Classroom in a book at the moment and I'm having issues with the browser preview of my child page. In dreamweaver everything appears as it should, (as far as I know), with my CSS stylesheet in the sources panel. It's connected to all my media types and displaying appropriately in my "live" view. But, when I go to "Preview in Web Browser", it's as if no stylesheet is attached. Can someone help? I have restarted Dreamweaver just incase it was a program issue, but the problem persisted.

    It's linked to my site. See the underlined portion.
    Code goes as follows:
    <!doctype html>
    <html><!-- InstanceBegin template="/Templates/mygreen_temp.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
    <script src="/js/menu.js"></script>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Meridien GreenStart Association – Green News</title>
    <!-- InstanceEndEditable -->
    <link href="/mygreen_styles.css" rel="stylesheet" type="text/css">
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!-- InstanceBeginEditable name="head" -->
    <meta name="description" content="Meridien GreenStart Association – add description here.">
    <!-- InstanceEndEditable -->
    <!--The following script tag downloads a font from the Adobe Edge Web Fonts server for use within the web page. We recommend that you do not modify it.--><script>var __adobewebfontsappname__="dreamweaver"</script><script src="http://use.edgefonts.net/source-sans-pro:n2,n4:default;paytone-one:n4:default;kreon:n4,n7: default;patua-one:n4:default;cousine:n4:default.js" type="text/javascript"></script>
    </head>

  • Why is there an empty space on the right of my page when previewed in browser?

    I've followed the guidelines on the design section of Muse but when I preview the page in the browser, I can scroll right and there be more of the page that hasn't been designed. I'm not sure what Pinning is but does it have something to do with that? I'm pretty sure it's an easy fix but I'm new to Muse and can't figure it out! Please Help!

    Here's the site...
    Home
    The browser window is whatever automatically comes up, but it loads filling the whole browser window. The problem is that you can scroll into empty space.
    I really don't understand pinning at all, could you give me a brief explanation of what it is or a link to a tutorial video that can. Thank you so much for the help guys!
    Also, you'll notice the facebook feed I got from the facebook developers site isn't working. They say the message displayes comes up when the "author then deletes the post or changes the post audience selector from public"
    All our posts are public so don't know who to fix this?
    Again, thanks for your help!

  • Looks different when previewing in browser. Help?

    <!DOCTYPE
    html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html
    xmlns="http://www.w3.org/1999/xhtml"><!--
    InstanceBegin template="/Templates/UA.dwt" codeOutsideHTMLIsLocked="false"
    -->
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled
    Document</title>
    <style type="text/css">
    <!--
    body
    font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
    margin:
    0;
    padding: 0;
    color: #000;
    background-color:
    #000;
    background-image:
    url(Logos_for_Ultra_Aircare_central_vacuum/Ultraaircare%20background.jpg);
    /* ~~
    Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between
    browsers, it's best practices to zero padding and margin on lists. For
    consistency, you can either specify the amounts you want here, or on the list
    items (LI, DT, DD) they contain. Remember that what you do here will cascade to
    the .nav list unless you write a more specific selector. */
    padding:
    0;
    margin: 0;
    h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;  /*
    removing the top margin gets around an issue where margins can escape from their
    containing div. The remaining bottom margin will hold it away from any elements
    that follow. */
    padding-right: 15px;
    padding-left: 15px; /* adding the
    padding to the sides of the elements within the divs, instead of the divs
    themselves, gets rid of any box model math. A nested div with side padding can
    also be used as an alternate method. */
    a img { /* this selector removes
    the default blue border displayed in some browsers around an image when it is
    surrounded by a link */
    border: none;
    /* ~~
    Styling for your site's links must remain in this order - including the group of
    selectors that create the hover effect. ~~ */
    a:link
    color:#414958;
    text-decoration: underline; /* unless you style your
    links to look extremely unique, it's best to provide underlines for quick visual
    identification */
    a:visited {
    color: #4E5869;
    text-decoration:
    underline;
    a:hover, a:active, a:focus { /* this group of selectors will
    give a keyboard navigator the same hover experience as the person using a mouse.
    text-decoration: none;
    /* ~~
    this container surrounds all other divs giving them their percentage-based width
    ~~ */
    .container {
    width: 80%;
    max-width: 1260px;/* a max-width may be
    desirable to keep this layout from getting too wide on a large monitor. This
    keeps line length more readable. IE6 does not respect this declaration.
    min-width: 902px;/* a min-width may be desirable to keep this layout from
    getting too narrow. This keeps line length more readable in the side columns.
    IE6 does not respect this declaration. */
    background: #FFF;
    margin: 0
    auto; /* the auto value on the sides, coupled with the width, centers the
    layout. It is not needed if you set the .container's width to 100%. */
    /* ~~
    the header is not given a width. It will extend the full width of your layout.
    It contains an image placeholder that should be replaced with your own linked
    logo ~~ */
    .header {
    background-color: #051852;
    /* ~~
    These are the columns for the layout. ~~
    1)
    Padding is only placed on the top and/or bottom of the divs. The elements within
    these divs have padding on their sides. This saves you from any "box model
    math". Keep in mind, if you add any side padding or border to the div itself, it
    will be added to the width you define to create the *total* width. You may also
    choose to remove the padding on the element in the div and place a second div
    within it with no width and the padding necessary for your design.
    2) No
    margin has been given to the columns since they are all floated. If you must add
    margin, avoid placing it on the side you're floating toward (for example: a
    right margin on a div set to float right). Many times, padding can be used
    instead. For divs where this rule must be broken, you should add a
    "display:inline" declaration to the div's rule to tame a bug where some versions
    of Internet Explorer double the margin.
    3)
    Since classes can be used multiple times in a document (and an element can also
    have multiple classes applied), the columns have been assigned class names
    instead of IDs. For example, two sidebar divs could be stacked if necessary.
    These can very easily be changed to IDs if that's your preference, as long as
    you'll only be using them once per document.
    4) If
    you prefer your nav on the right instead of the left, simply float these columns
    the opposite direction (all right instead of all left) and they'll render in
    reverse order. There's no need to move the divs around in the HTML source.
    .sidebar1
    float: left;
    width: 20%;
    padding-bottom: 10px;
    background-color:
    #041237;
    .content {
    padding: 10px 0;
    width: 80%;
    float:
    left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    /* ~~
    This grouped selector gives the lists in the .content area space ~~
    .content ul, .content ol {
    padding: 0 15px 15px 40px; /* this padding
    mirrors the right padding in the headings and paragraph rule above. Padding was
    placed on the bottom for space between other elements on the lists and on the
    left to create the indention. These may be adjusted as you wish. */
    /* ~~
    The navigation list styles (can be removed if you choose to use a premade flyout
    menu like Spry) ~~ */
    ul.nav {
    list-style: none; /* this removes the list
    marker */
    border-top: 1px solid #666; /* this creates the top border for the
    links - all others are placed using a bottom border on the LI
    margin-bottom: 15px; /* this creates the space between the navigation on
    the content below */
    ul.nav li {
    border-bottom: 1px solid #666; /*
    this creates the button separation */
    ul.nav a, ul.nav a:visited { /*
    grouping these selectors makes sure that your links retain their button look
    even after being visited */
    padding: 5px 5px 5px 15px;
    display: block; /*
    this gives the link block properties causing it to fill the whole LI containing
    it. This causes the entire area to react to a mouse click.
    text-decoration: none;
    background: #8090AB;
    color:
    #000;
    ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes
    the background and text color for both mouse and keyboard navigators
    background: #6F7D94;
    color: #FFF;
    /* ~~
    The footer ~~ */
    .footer {
    position: relative;/* this gives IE6 hasLayout
    to properly clear */
    clear: both;
    background-color: #041237;
    color:
    #FFF;
    font-weight: 100;
    font-variant: normal;
    text-transform:
    none;
    font-style: normal;
    font-size: 10px;
    font-family: Arial,
    Helvetica, sans-serif;
    height: 30px;
    width: 902px;
    padding-top:
    10px;
    padding-right: 0;
    padding-bottom: 10px;
    padding-left: 0;
    /* ~~
    miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used
    to float an element right in your page. The floated element must precede the
    element it should be next to on the page. */
    float: right;
    margin-left:
    8px;
    .fltlft { /* this class can be used to float an element left in
    your page. The floated element must precede the element it should be next to on
    the page. */
    float: left;
    margin-right: 8px;
    .clearfloat { /* this
    class can be placed on a <br /> or empty div as the final element
    following the last floated div (within the #container) if the #footer is removed
    or taken out of the #container */
    clear:both;
    height:0;
    font-size:
    1px;
    line-height: 0px;
    -->
    </style><!--[if lte IE
    7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative
    margin can be placed on any of the columns in this layout with the same
    corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE
    the hasLayout trigger it needs to correct extra whiltespace between the links
    </style>
    <![endif]--></head>
    <body>
    <div
    class="container">
      <div class="header"><!-- end .header
    --><!-- InstanceBeginEditable name="header" --><img
    src="Templates/warranty_sticker_2004.jpg" width="902" height="302" /><!--
    InstanceEndEditable --></div>
      <!-- InstanceBeginEditable
    name="links" -->
      <div class="sidebar1">
        <ul
    class="nav">
          <li><img src="links/home.jpg" width="181"
    height="44" /></li>
          <li><img
    src="links/ultraaircare.jpg" width="181" height="44" /></li>
    <li><img src="links/pricing.jpg" width="181" height="44"
    /></li>
          <li><img src="links/allergiesandasthma.jpg"
    width="181" height="44" /></li>
          <li></li>
    <img src="links/contact us.jpg" width="181" height="44" />
    </ul>
        <p> </p>
    <p> </p>
        <p> </p>
    <p> </p>
        <!-- end .sidebar1 -->
    </div>
      <!-- InstanceEndEditable --><!--
    InstanceBeginEditable name="content" -->
      <div
    class="content">
        <h1>Instructions</h1>
        <p>Be
    aware that the CSS frfjfyukuhjiklui9liol;ko;i90or these layouts is heavily
    commented. If you do most of your work in Design view, have a peek at the code
    to get tips on working with the CSS for the liquid layouts. You can remove these
    comments before you launch your site. To learn more about the techniques used in
    these CSS Layouts, read this article at Adobe's Developer Center - <a
    href="http://www.adobe.com/go/adc_css_layouts">http://www.adobe.com/go/adc_css_layouts</a>.</p>
    <h2> </h2>
        <p> </p>
    <p> </p>
        <p> </p>
    <!-- end .content -->
      </div>
      <!-- InstanceEndEditable
    --><!-- InstanceBeginEditable name="footer" -->
      <div
    class="footer">
        <p>Copyright UltraAircare
          <!-- end
    .footer -->
        </p>
      </div>
      <!--
    InstanceEndEditable --><!-- end .container
    --></div>
    </body>
    <!-- InstanceEnd
    --></html>
    So I just started a website for a project that I have to do. So far everything has been going well. Everything shows up perfect in liveview in Dreamweaver CS5, but now that I'm previewing it in internet explorer, this is how it shows up. Help anyone? Any ideas?

    Link please.
    Bob

Maybe you are looking for