Layout Problem in !E 6 Windows

I'm having a problem with the layout on this page (
http://www.hrrh-foundation.ca/stories.html
) in Windows Internet Explorer 6 only. The content in the center
column is displaced down to below the level of the blue nav in the
left column. There's no problem in IE 7 Windows or any of the Mac
browsers. It's probably something in the CSS but I don't know what
it is. Anyone help?
Thanks,
Geoff

GeoffS88 posted in macromedia.dreamweaver:
> I'm having a problem with the layout on this page (
>
http://www.hrrh-foundation.ca/stories.html
) in Windows Internet
> Explorer 6 only.
In style-hrrh.css you have several
<style></style> tags. These do not
belong in external style sheets. See if removing them helps.
Some of
them may be in your template file.
There's also some DW template markup in that file that is
doing an
@import of another CSS file. I don't use templates, but I
wonder if
that is normal? At any rate, it is redundant since you have
the same
code in the head section of the page. I would remove it from
style-
hrrh.css altogether.
As an aside, your "Spring 2008" PDF link has two opening
<a href...>.
You'll need to go to Code view to delete whichever is one is
incorrect.
I'm guessing that would be <a href="assets/Let it flow
9.pdf">.
Mark A. Boyd
Keep-On-Learnin' :)

Similar Messages

  • Keyboard Layout Problem in Bootcamp Using Windows 7

    Both OSX, bootcamp and Windows 7 are the latest versions and all up to date and I have had this problem ever since I first started using Windows 7. Everything has worked smoothly and without problems except for my keyboard. No matter what program I am in when using windows 7 certian keys do not work as intended. All of the letters and numbers work as intended but things like the question mark key type this like É instead.
    Question mark =É
    Greater than symbol= '
    Less than symbol = "
    The bracket keys = ¨Çç
    backslash = à
    forward slash = É
    Quotation mark = È
    My question would be is this something that always happens in bootcamp Windows 7 that just needs to be changed or is it out of the ordinary for the characters to be bound to keys incorrrectly like this.

    You prob do not have the drivers installed. Takes a separate disc sometimes. There is a box to check during the partitioning and installation which has to do with downloading the latest drivers. You gotta do that to make much of anything work. If nothing else, go to an Apple reseller in your area or Apple Store if you are so lucky, and get some help. Is not the easiest thing to get all that set up correctly, but it does work well if you got the drivers installed. I have an aviation site which is not yet Mac compatible, so also do the Bootcamp thing with Windows, in order to do my thing on Jeppesen. Hang in there and get some help if you need.

  • I had a problem installing icloud on windows 8.1. What should I do? At the end of the installation process there is a error message.

    I had a problem installing icloud on windows 8.1. At the end of the installation process there is a error message.What should I do? 

    I'm guessing that you have checked and complied with the system requirements?
    System Requirements
    Microsoft Windows 7 or 8
    Microsoft Outlook 2007 or later or an up-to-date browser (for Mail, Contacts, Calendars)
    Internet Explorer 9 or later, Firefox 22 or later, or Google Chrome 28 or later (for Bookmarks)
    Broadband Internet access
    Note: If you are upgrading from iCloud Control Panel 1.1 or earlier, you will need to sign out of iCloud Control Panel and uninstall it before downloading iCloud Control Panel 3.1

  • Is there a problem with JFrame and window listeners?

    As the subject implies, i'm having a problem with my JFrame window and the window listeners. I believe i have implemented it properly (i copied it from another class that works). Anyway, none of the events are caught and i'm not sure why. Here's the code
    package gcas.gui.plan;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.util.Hashtable;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import gcas.plandata.TaskData;
    import gcas.util.GCASProperties;
    import gcas.gui.planlist.MainPanel;
    * MainFrame extends JPanel and is the main class for the plan details window
    public class MainFrame extends JFrame implements WindowListener
         * the container for this window
        private Container contentPane;
         * a string value containing the name of the plan being viewed
        private String labelText;
         * a string value containing the name of the window (GCAS - plan list)
        private static String title;
         * an instance of JDialog class
        private static MainFrame dialog;
         * hashTable that correlates the task name to its id as found in the
         * plan
        private Hashtable taskNameToId = new Hashtable();
         * an instance of taskSetPane.  This is the current instance of taskSetPane
         * being viewed
        private PlanTaskSet currentPane;
         * instance of TaskData class.  Each instance will hold information on
         * an individual task
        private TaskData taskData;
         * hashTable containing instances of the taskSetPane class
        private Hashtable taskSetPanes = new Hashtable();
         * an instance of the OuterPanel class
        OuterPanel mainPanel;
         * an instance of the ButtonPanel class
        ButtonPanel buttonsPanel;
         * an instance of the LeftPanel class
        LeftPanel leftPanel;
         * an instance of the the GCASProperties class
        GCASProperties gcasProps;
        private static MainFrame thisPlanMain = null;
        private MainPanel planListMain;
         * constructor for MainFrame
         * @param frame the parent frame calling this class
         * @param locationComp the location of the component that initiated the opening of the dialog
         * @param labelText the name of the plan that is being viewed
         * @param title title of window
        private MainFrame(JFrame frame, Component locationComp, String labelText,
                String title)
            super(title);
            gcasProps = GCASProperties.getInstance();
            mainPanel = new OuterPanel(labelText, currentPane,
                    taskNameToId, taskSetPanes);
            leftPanel = mainPanel.getLeftPanel();
            System.out.println("LABLE: " + labelText);
            leftPanel.setMainPanelContents();
            buttonsPanel = new ButtonPanel(labelText, taskSetPanes,
                    taskNameToId, leftPanel);
            contentPane = getContentPane();
            contentPane.add(mainPanel, BorderLayout.CENTER);
            contentPane.add(buttonsPanel, BorderLayout.PAGE_END);
            this.addWindowListener(this);
            this.labelText = labelText;
            pack();
            setLocationRelativeTo(locationComp);
            this.setVisible(true);
            planListMain = MainPanel.getInstance();
            planListMain.setVisible(false);
        public static MainFrame getInstance(JFrame frame, Component locationComp, String labelText,
                String title)
            if (thisPlanMain == null)
                thisPlanMain = new MainFrame(frame, locationComp, labelText,
                        title);
            return thisPlanMain;
        public static MainFrame getDialogObject()
        {   //from the location this is called (ButtonPanel), this will never
            //be null
            return thisPlanMain;
        public static void setABMDDialogNull()
            thisPlanMain = null;
         * returns an instance of MainFrame
         * @return MainFrame instance
        public static MainFrame getDialog()
            return dialog;
         * setter for MainFrame
         * @param aDialog a MainFrame instance
        public static void setDialog(MainFrame aDialog)
            dialog = aDialog;
         * window opened event
         * @param windowEvent the window event passed to this method
        public void windowOpened(WindowEvent windowEvent)
         * The window event when a window is closing
         * @param windowEvent the window event passed to this method
        public void windowClosing(WindowEvent windowEvent)
            gcasProps.storeProperties("PlanList");
            MainPanel abmd = MainPanel.getInstance();
    //        planMain = this.getDialogObject();
    //        if(planMain != null)
    //            planMain.setVisible(false);
    //            abmd.setVisible(true);
    //            planMain.setABMDDialogNull();
            if(this.getDialogObject()!= null)
                abmd.setVisible(true);
                setVisible(false);
                setABMDDialogNull(); 
         * Invoked when the Window is set to be the active Window
         * @param windowEvent the window event passed to this method
        public void windowActivated(WindowEvent windowEvent)
         * Invoked when a window has been closed as the result of calling dispose on the window
         * @param windowEvent the window event passed to this method
        public void windowClosed(WindowEvent windowEvent)
         * Invoked when a Window is no longer the active Window
         * @param windowEvent the window event passed to this method
        public void windowDeactivated(WindowEvent windowEvent)
            System.out.println("HI");
         * Invoked when a window is changed from a minimized to a normal state
         * @param windowEvent the window event passed to this method
        public  void windowDeiconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
           System.out.println("Invoked when a window is changed from a minimized to a normal state.");
         * Invoked when a window is changed from a normal to a minimized state
         * @param windowEvent the window event passed to this method
        public  void windowIconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
    //        System.out.println("Invoked when a window is changed from a normal to a minimized state.");
    }anyone know whats wrong?

    It turned out that my ide was running the old jar and not updating it, so no matter what code i added, it wasn't being seen. Everything should be fine now.

  • Problem with shares on Windows 2003R2 server from a Windows 8.1 PC

    I'm having problem with shares on Windows 2003R2 server from a Windows 8.1 PC.  It times out when I try to copy a file from my PC to the server and I get an error message saying "There is a problem accessing network drive W:\. Make sure you are
    connected to the network and try again."
    I have no problem copying files from the server to the PC.
    Any ideas?

    Hi,
    How about your problem now? Have you test other machine also installed Windows 8.1? Did they have this problem?
    To diagnose this problem, firstly, please check Windows 2003R2 firewall settings, also can disable firewall temporarilly for test.
    Secondly, try to use Network Monitor to capture network communication package for test.
    Network Monitor:
    http://www.microsoft.com/en-us/download/details.aspx?id=4865
    Roger Lu
    TechNet Community Support

  • Problem with iTunes in Windows XP

    I am having a problem loading iTunes in Windows XP service pack 2. Every time I click on it, it seems to load for a little while, and then a window pops up saying "iTunes has encountered a problem and needs to close". When I clicked on the details tab, it showed me a bunch of stuff I couldn't understand. Here's what it said:
    AppName: itunes.exe
    AppVer:7.6.2.9
    ModName: unknown
    ModVer: 0.0.0.0
    Offset: 00000000
    How do I get iTunes to work right?

    The first question, Have you installed any of the following:
    ACE & K-Lite mega codecs package, QT alternative, Storm codec, WinAVI video converter
    These are know to cause troubel with Quicktime and must be uninstalled before proceding.
    It is also a good idea to go to your Control Panel and try to launch QUicktime preferences - you need to be in classic view to see it.
    Post any error message in full. This error message can give a clue to the presence of problem codecs if you are not sure.
    Next do a removal of Quicktime with installer cleanup, followed by an install of the latest version.
    I will give a method for complete removal, cleanup and reinstall of iTunes, Quicktime and related components, but in your case it may be possible to just do the QUicktime part. Don't forget to delete the recommended files from your system32 folder.
    == uninstall with cleanup ==
    Download a fresh copy of iTunes and the stand alone version of Quicktime
    http://www.apple.com/quicktime/download/win.html
    http://www.apple.com/itunes/download/
    Download and install Microsoft Installer cleanup utility, there are instructions on the page as well as the download. Note that what you download is the installer not the program – you have to run it to install the program
    http://support.microsoft.com/kb/290301/
    Now use the following method to remove iTunes and its components:
    XP
    http://support.apple.com/kb/HT1925
    Vista
    http://support.apple.com/kb/HT1923
    If you hit a problem with one of the uninstalls don't worry, carry on with the deleting of files and folders as directed in the method.
    Restart your PC.
    Run the Microsoft Installer Cleanup Utility. (Start > All Programs > Windows Install Clean Up)
    Remove any references you find to the programs you removed - strictly speaking you only need to worry about those programs where the uninstall failed.
    restart your PC
    Install the stand alone Quicktime and check that it works.
    If it does, install iTunes.

  • My problem is on my Windows PC.  I am getting the error message, "The procedure entry point sqlite_3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I am told this is related to iTunes.  Any help?

    I use both a Mac and a PC.  My problem is on my Windows 7 PC.  I am getting the error message, "The procedure entry point sqlite_3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I am told this is related to iTunes.  Any help out there?  Thanks

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Restart the programme all should be well
    In case that your OS is (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Now paste it in the folder  C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Restart the programme, it should not display that message, it should be clear.
    Good Luck

  • Problem Updating iTunes with Windows Vista

    I downloaded iTunesSetup.exe and ran as an Admin and during the installation I get an error message that says "Could not access network location %APPDATA%\."
    What does this mean and how do I fix it?

    Apple, apparently, had a fix up for an earlier version of itunes, but that is gone from the web page, and has been yanked.
    Yes, there are big problems with iTunes for Windows. Until these are rectified, your Ipod will be a paper weight.

  • Problem Installing 817 on Windows 2000 with RAID Array

    I am having a problem installing Oracle under windows 2000 which has 2 x 60 GB discs configured in RAID array. When I run the setup program the cursor goes busy for about 10 seconds and returns back to normal and nothing happens !. No errors nothing.
    However when I run the Object Manager in the ods_preinstall directory it starts but in the log file I get the following error message:-
    02/14/02 09:46:18 : (892) : Error in IO Control call for disk PhysicalDrive0 (Error 21)
    02/14/02 09:46:19 : (892) : The count = 28
    02/14/02 09:46:19 : (892) : The signature is 0x443aa035
    02/14/02 09:46:19 : (892) : Error: First Partition of the disk must be an extended disk
    02/14/02 09:46:19 : (892) : Found the partition: 7
    Any idea whats happening....? Has anyone seen this before. Do I need to do something special in teh RAID..?
    TIA
    Martin

    Here are some possible solutions:
    1. The installation notes state that you must be logged on as Administrator to be able to install 9i. Are you logged on as the Administrator? Being logged on as user01 with Administrator priviledges isn't the same as Administrator.
    2. Is the disk full? If I remember my installation correctly, I needed 3 times the size of the files. The documentation will tell you how much space you need.
    Hope these two questions help
    Regards,
    Michael

  • I haveing problem installing itunes on Windows 7. Erorr masage is "There is a problem with this Windows installer package. A program reguired for this install to comlet coudnt be run. Contact your support personnel or package vendor."

    Hello,
    I haveing problem installing itunes on Windows 7. Erorr masage is "There is a problem with this Windows installer package. A program reguired for this install to comlet coudnt be run. Contact your support personnel or package vendor."
    Please heLp.
    Thank you.

    Repair your Apple Sofyware update.
    Go to START/ALL PROGRAMS/Apple Software Update. If it offers you a newer version of Apple Software Update, do it but Deselect any other software offered at the same time. Once done, try another iTunes install

  • Problem with touchpad and Windows 8.1. Acer Aspire E5-511

    I bought an Acer Aspire E5-511, but I have problem with touchpad and Windows 8.1.The touchpad (Synaptics) is not working with Windows 8.1 x64, but it works fine with Windows 7 x64 and Windows 8 x64.When I install Windows 8.1 and have to choose” language to install” I can’t choose anything with the touchpad. I should plug in my mouse to continue. I doesn’t work even when it’s fully installed and with latest driver (available only for win 8.1 x64) from Acer’s website. I tried with an older driver, but had no success. I updated BIOS, but it doesn’t work again. In hardware IDS in device manager it shows HID\… not ACPI\… (like win 7/8). Fn+F7 doesn’t help.When I try to install Windows7/8 the touchpad is working properly at the beginning (I can choose ”language to install”, “Time and currency format”… and the touchpad works after install even without driver).

    SOLUTION So guys after deep research and troubleshooting I found that you need to keep notice of a few things at time of installation: Installation Mode: UEFI (only)- LEGACY would create touchpad issues. after installation of windows just follow the driver installation hierarchy 1.Intel NB_Chipset_M Baytrail-M 2.Intel I/O Driver then rest of the crap. Note:After doing all this make sure your touchpad is active >> Fn+F7 Just wished if this solution came from an acer executive , the world would have been a better place , but anyways this is what community is for. Enjoy everyone

  • When I install itunes 10.5.3 i get a message " there is a problem encountered with your windows installer package ".... and i can't install it

    When I install itunes 10.5.3 i get a message " there is a problem encountered with your windows installer package ".... and i can't install it

    Have you completed all windows update including service Pack1?  If not, please complete all the windows update then follow steps below to re-install all over.
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime  
    Apple Software Update  
    Apple Mobile Device Support  
    Bonjour  
    Apple Application Support
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • Windows 8.1 Problem with games from windows store.

    I've got a problem with games from windows store. The installation is going well without any problems, however when I try to open it it's loading and then it turns off. The same problem happens when I try to use Games for Windows. I've use a sfc scan and
    it shows some errors but unfortunately it cannot fix them. Should I share the CBS log or find the solution somewhere else? I hope you help, best regards.

    Hi,
    According to my experience, the problem like store game app open failed probably caused by hardware driver. such as Audio and Graphic driver. So, first of all, please try to reinstall these two driver to fix this problem for test.
    In addition, for SFC scan failed problem, it can be caused by many reasons, I would suggest you use another command to fix your system for test.
    Dism /Online /Cleanup-Image /ScanHealth
    Also you can test SFC command in Windows 8.1 safe mode.
    Thirdly, if problem persists, please check Event Viewer, generally speaking, it would record the app open failed events.
    Roger Lu
    TechNet Community Support

  • HT3983 i have a sound problem when i install windows 7 32 bit on my imac

    i have a sound problem when i install windows 7 32 bit on my imac

    Did you download and install the Windows Support software? First step in Bootcamp Assistant is to download the support software. Then did you install the support software from within Windows?
    Read the Bootcamp Install instructions. http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf

  • Having problems installing iTunes on Windows XP

    Having problems installing iTunes on Windows XP - Error msg "There is a problem with Windows Installer Pkg. A program required for this install to complete could not be run. "  However, it's an iTunes error msg.

    The installation fails at the last possible moment each time.
    are you getting an error message, dave? if so, what does it say? include error message numbers if you're getting any.

Maybe you are looking for