Please help with column float problem in IE8

Hi there,
Sorry to be so pushy - but I am desperate for help!!
Having serious problems with my site in some PC's showing Internet Explorer 8. My right column floated right is moving down the page underneath the left column..
It shows fine on IE8 on my PC - however on my clients PC (vista with IE8) it is showing up as mentioned above. Is there a fix for this.
Here is my link http://www.dooks.com/pgs/welcome.html
The css is all there! If you need anything please let me know as I need to get this sorted - I have had serious issues with this site that I have never had before with other sites and am starting to think there is a bug in my software. I redid the index page and this one page (linked above) to see what my problems are - so help with query v appreciated.
Many thanks,
Karen

Lawrence_Cramer wrote:
A point to keep in mind is that IE8 is still in Beta.
Not anymore.
http://www.microsoft.com/Presspass/press/2009/mar09/03-18IE8AvailablePR.mspx
"REDMOND, Wash. — March 18, 2009 — Today Microsoft Corp. announced the availability of Windows Internet Explorer 8, the new Web browser that offers..."
Mark A. Boyd
Keep-On-Learnin' :-)

Similar Messages

  • Urgent Please help with a Conferencing problem in CUCM 6.1

    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    We have a configuration of CUCM 6.1. We have 24 voice ports (FXO) configured in H 323 registered with the call manger.  A CUE 3.2 configured for IVR and mail box. Gateway is a Cisco 3845 and the IOS version is 12.4(15) T10
    The problem is whenever a conference is configured with an outside number the FXO port is not releasing after the call disconnects.  It is not FXO disconnect problem. This happens only when a conference is taking place. There is no problem with any other outside or inside calls.
    I am attaching the configuration of Gateway. Please help me with the problem, I am very much thankful for you that.

    The Family pack covers upto 5 computers, other Install Disc cover one computer only.

  • Please help with an RMI problem

    Hi,
    This is probably a really simple problem which i can't spot, but i have the folloing 'HelloWorld' RMI program:
    The Client Program:
    import java.rmi.*;
    public class HelloClient {
         public static void main(String args[]) {
              if(System.getSecurityManager() == null) {
                   System.setSecurityManager(new RMISecurityManager());
              try {
                   HelloInterface obj = (HelloInterface)Naming.lookup("/HelloServer");
                   String message = obj.sayHello();
                   System.out.println(message);
                   Thread.sleep(10000);
              } catch (Exception e) {
                   System.out.println("HelloClient exception: " + e);
    }The Remote Interface:
    public interface HelloInterface extends java.rmi.Remote {
         public String sayHello() throws java.rmi.RemoteException;
    }The Server Program:
    import java.io.*;
    import java.rmi.*;
    import java.rmi.server.*;
    import java.util.Date;
    public class HelloServer extends UnicastRemoteObject implements HelloInterface {
         public HelloServer() throws RemoteException {
              super();
         public String sayHello() throws RemoteException {
              return "Hello World, the current system time is " + new Date();
    }And finally the class which binds the object to the registery:
    import java.rmi.*;
    public class RegisterIt {
         public static void main(String args[]) {
              try {
                   HelloServer obj = new HelloServer();
                   System.out.println("Object instantiated: " + obj);
                   Naming.rebind("/HelloServer", obj);
                   System.out.println("HelloServer bound to registery");
              } catch (Exception e) {
                   System.out.println(e);
    }Now, this program works fine on my computer at home(XP!!!!!) but when i try to run it on the computers in college which run NT, it comes up with the following exceptions when i try to run RegisterIt:
    Java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    Java.lang.ClassNotFoundException: HelloServer_StubThis is saying that it cannot find the stub which is generated, but i use the folloing .bat file to load up the program:
    echo Creating remote object skelton classes....
    rmic -d . HelloServer
    start rmiregistry -J-Djava.security.policy=test.policy
    start java RegisterIt
    start java -Djava.security.policy=test.policy HelloClientThe stub is definitely created(it worked at home and i have checked in the directory and there are clearly the files HelloServer_Stub.class and HelloServer_Skel.class). The PATH is set correctly otherwise the registery would not be able to run correctly etc and therefore i am completely stuck as to why it doesn't work.
    Please help as it is very important for me.
    Many Thanks
    Cath

    I did not have any problem with Windows 2000 at all but only with Windows XP (and to think XP is a 2000 hybrid!).
    I have the same error: a ClassNotFoundException on the stub file.
    Any help will be appreciated. Thanks.

  • Please help with Nokia N95 problem.

    If anyone can help with this I’d be much appreciated, I have a N95 on contract with T-Mobile. When I try to play videos from myspace, or you tube etc… I get a message telling me the following.
    “Hello, Either you either have JavaScript turned off or an old version of macromedia's flash player click here to get the latest flash player”.
    I then get the option of clicking on a link within the previous sentence statement that directs me to acrobat downloads home page where I get the following message.
    “We are unable to locate a web player that matches your platform and browser. Please visit our table of recommended web players”
    This is deeply frustrating as in nearly every other way I feel the phone is perfect. If Any one can hep me fix this problem I’d be much appreciated.

    daperk,
    You should post this to board "Smartphones, Nseries and Eseries Devices".

  • Please help with card deck problem

    the class is supposed to create a shuffled deck of 52 cards
    it first is supposed to make an ordered deck of cards and then pull cards out of it and into another deck at random. when a card has been pulled, it is supposed to be taken out of the ordered deck. I say supposed to because for some reason a test of the class gives a strange runtime error:
    Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1 >= 1
    at java.util.Vector.elementAt(Vector.java:427)
    at Deck.<init>(Deck.java:17)
    at testDeck.main(testDeck.java:5)
    the following is the code:
    import java.util.*;
    public class Deck
      private Vector orderedDeck = new Vector(52);
      private Vector deck = new Vector(52);
      public Deck()
        //creates an ordered deck where rank and suit are the rank and suit of a Card variable
        for(int rank=0; rank<=12; rank++)
          for(int suit=0; rank<=3; rank++)
            this.orderedDeck.addElement(new Card(rank,suit));
        //supposed to shuffle the ordered deck into a final deck
        for(int i=0; i<53; i++)
          int randomNum = (int) (Math.random()*(this.orderedDeck.size()+1));
          this.deck.addElement(orderedDeck.elementAt(randomNum));
          this.orderedDeck.removeElementAt(randomNum);
    }please help me figure out my problem

         for(int i=0; i<53; i++)This should be:
         for(int i=0; i<52; i++)because you declared your array of size 52.
    -Eric

  • Please help with another card problem

    this one is a strange one(if you saw the other one you might understand this better) in any case, i am getting a error and i do not see the reason
    here is the code
      public Card getCard(int i)
        switch(i)
          case 1: return (Card) card1;
          case 2: return (Card) card2;
          case 3: return (Card) card3;
          case 4: return (Card) card4;
          case 5: return (Card) card5;
      }the compiler says that there is no return statement. i don not see the problem as there are five of them and all seem to be accessable.
    please tell me if i am not seeing something or have it all wrong.
    btw card1,card2,etc. are Card variables so that is not the problem. this method is supposed to return one of five cards according to the int that is passed to it.
    please help me!

    public Card getCard(int i)
    switch(i)
    case 1: return (Card) card1;
    case 2: return (Card) card2;
    case 3: return (Card) card3;
    case 4: return (Card) card4;
    case 5: return (Card) card5;
    }No, no, no. It's really very simple. Imagine this:
    Card c = getCard(42);
    c.someMethod();What is the value of 'c' after calling getCard()? And what happens when c.someMethod() is called?
    You see, the getCard() method does not have a return statement in all cases. A method that returns a value either must be absolutely guaranteed to execute a return statement in all cases, unless an exception in thrown.
    So the simplest thing you can do (or an array of cards might be in order here) is just add a default: case that throws an exception.
       public Card getCard(int i)
         switch(i)
           case 1: return (Card) card1;
           case 2: return (Card) card2;
           case 3: return (Card) card3;
           case 4: return (Card) card4;
           case 5: return (Card) card5;
           default: throw new IllegalArgumentException("Invalid card number " + i);
    Or, if you expect that in normal operation you'll be passing in values other than 1-5, instead of throwing an exception you could return null. But it sounds to me like in your case, it is a bug if a value other that 1-5 is ever passed in.

  • Please Help with text parsing problem

    Hello,
    I have the following text in a file (cut and pasted from VI)
    12 15 03 12 15 03 81 5 80053 1 1,2,3 $23.00 1 ^M
    12 15 03 12 15 03 81 5 84550 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 84100 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 83615 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 82977 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 80061 1 1,2,3 $44.00 1 ^M
    12 15 03 12 15 03 81 5 83721 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 84439 1 1,2,3 $44.00 1 ^M
    12 15 03 12 15 03 81 5 84443 1 1,2,3 $40.00 1 ^M
    12 15 03 12 15 03 81 5 85025 1 1,2,3 $26.00 1 ^M
    12 15 03 12 15 03 81 5 85008 1 1,2,3 $5.00 1 ^M
    this method reads the text from a file and stores it in a ArrayList
        public ArrayList readInData(){
            File claimFile = new File(fullClaimPath);
            ArrayList returnDataAL = new ArrayList();
            if(!claimFile.exists()){
                System.out.println("Error: claim data - File Not Found");
                System.exit(1);
            try{
                BufferedReader br = new BufferedReader(new FileReader(claimFile));
                String s;
                while ((s = br.readLine()) != null){
                         System.out.println(s + " HHHH");
                        returnDataAL.add(s);
            }catch(Exception e){ System.out.println(e);}
            return returnDataAL;
        }//close loadFile()if i print the lines from above ... from the arraylist ... here is waht i get ...
    2 15 03 12 15 03 81 5 80053 1 1,2,3 $23.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 84550 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 84100 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 83615 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 82977 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 80061 1 1,2,3 $44.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 83721 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 84439 1 1,2,3 $44.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 84443 1 1,2,3 $40.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 85025 1 1,2,3 $26.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 85008 1 1,2,3 $5.00 1 HHHH
    HHHH
    I see the ^M on the end of the lines ... but i dont understand why im getting the blank lines
    in between each entry ... I printed "HHHH" just to help with debugging ... anyone have any ideas why i am getting the extra blank lines?
    thanks,
    jd

    maybe its a FileReader deal.. Im not sure, maybe try using InputStreams. This code works for me (it reads from data.txt), give it a try and see if it works:
    import java.io.*;
    public class Example {
         public Example() throws IOException {
              BufferedReader b = new BufferedReader(new InputStreamReader(new FileInputStream("data.txt")));
              String s = "";
              while ((s = b.readLine()) != null) {
                   System.out.println(s);
              b.close();
         public static void main(String[] args) {
              try {
                   new Example();
              catch (IOException e) {
                   e.printStackTrace();
    }

  • Please Help with background color problem in loaded .swf

    I am stuck!
    This is Flash CS4...
    I created a flash application which loads in many other little flash applications (.swf files) based on menu selections.
    When I change one of the little applications the changes are viewable except when I change the background color.
    After the first time I view the application, the background color changes do not carry over to the main app.  I run the little ones stand alone and they show the new color, then I run the main app and any other changes I have made are there but not the color change.  When I remove the file and the load fails, the old backround color still displays in the container movie clip the .swf was previously loaded into.
    I have tried several different options and the only thing that worked was renaming and copying and deleting and making a big mess.  There has to be a way to force a refresh of this mysteriously saved color. doesn't there?
    Please help!
    Thanks!
    Vivian

    Hi Antonia
    I am loading the swf into an instance of a movie clip:
    var myLoader:MovieClipLoader = new MovieClipLoader();
    myLoader.loadClip("Capitalization.swf",  contCapitalization);
    it is the background of Capitalization.swf that will not change
    this is AS 2 since the app was created before I upgraded
    Any ideas?

  • Please help with the versioncue problem.

    I know this is not the right place to post this but please, I need fast help. When I open a project in Photoshop CS3 it says "Cannot find the missing module blablabla versioncue.dll". I've searched around a little and found someone who said that 2 updates would fix it. I downloaded the updates but when I started to install it said "Can't find the product to update".
    For some extra info, I just reformated comp and I've considered it might be something about missing files or something and if so, can someone add [email protected] and send to me because this is important. This is also because I have a schoolproject where Photoshop will be needed.
    I'm also suspicious if I actually have the documents and settings files for CS3 since I only copied the whole files from programs when I reformated it.
    Please help!

    >since I only copied the whole files from programs when I reformated it.
    you need to do a full install from the original discs david. simply copying the files won't do it.

  • Please help with my post problems

    What and how you can recover the lost e-mail in Outlook Express??? 
      Missing mail for 3 months, one day took the incoming mail on the laptop, letters have been about 2500, the next day I come to work I open mail on your computer-no mail on the laptop also lost mail. Please help to recovery pst?

    Recovery ToolBox for Outlook to PST is a specialized tool for fast and efficient recovery of user data from corrupted Outlook PST files.
    http://www.outlook.recoverytoolbox.com/

  • Can anyone please help with my G580 problems?

    These days my IdeaPad G580 has been showing serious problems: 1) I can't shut down the laptop by clicking the desktop button. Sometimes I may succeed by pushing the hardware button, but very often this won't help either. 2) I can't open the Skype app. Everytime I click on the Skype tile it just displays the blue colour for some seconds and then returns to the start menu. I have to uninstall and then install the app again. Yet the next time I try to open the app, the same problem arises. I can't just keep uninstalling and installing the app. What's more, similar problems appear when I try to open a PDF file with the windows reader application. And of course I cannot uninstall and install the reader app, so what should I do? 3) The windows app market cannot do updates. 4) I have accidentally refreshed my laptop and then I tried to restore the system. The system has been restored to a point which is exactly before I did the refreshing. So almost all my programs have been recovered - except my AUTHENTIC MS Office (which was installed with a CD-ROM)!! That's insane. But I have left my whole MS Office pack in my homeland. What can I do with this?? Please give me your feedback asap. I just bought the laptop not even a month ago. It's silly that so many problems arise.

    Have you looked under power options to see if it's configured to shut down when the button is pressed?  You can assign different actions in this menu, it may have been accidentally changed somehow.  Either that or a faulty power button?

  • Please, help with this strange problem

    Hi,
    I'm trying to get the serial value of a informix serial column after inserting a record. I'm using the ifxjdbc driver for Informix (v 2.2).
    I've written the code below:
    Connection conn = null;
    PreparedStatement st = null;
    try
    conn = ds.getConnection();
    st = conn.prepareStatement("INSERT INTO Comunicats (vchTitle) "+
    "VALUES (?)");
    st.setString(1,vchTitle);
    if (st.executeUpdate() != 1) throw new EJBException();
    /** Now getting the Primary key inserted **/
    long sCodCom = ((IfmxStatement)st).getSerial();
    st.close();
    conn.close();
    where I'm getting the connection from a datasource (ds) connected to a Informix pool using that driver (com.informix.jdbc.ifxDriver)
    This code inserts the row but fails getting the serial value. The error message is:
    "java.lang.ClassCastException: weblogic.jdbc.rmi.SerialPreparedStatement (...) "
    Obviously, the cast ((IfmxStatement)st) doesn't work.
    If I change how to get the connection, and I use the DriverManager and declare a Statement st variable (instead of a preparedStatement variable):
    conn = DriverManager.getConnection(Informix_Url);
    Statement st = conn.createStatement();
    int nRet = st.executeUpdate("INSERT INTO ...");
    Then it works.
    But I don't wanna use the DriverManager. I wanna use my pool and datasource to get the connection.
    Has anybody tried something similar successfully?
    Thanks a lot.
    Joan.

    Hello jbalaguero,
    We are now facing the same problem ie. it works with DriverManager connection but not with Weblogic Connection Pool connection!
    Where you able to solve this problem? If yes please tell how!
    Thanks.
    Hi,
    I'm trying to get the serial value of a informix
    serial column after inserting a record. I'm using the
    ifxjdbc driver for Informix (v 2.2).
    I've written the code below:
    Connection conn = null;
    PreparedStatement st = null;
    try
    conn = ds.getConnection();
    st = conn.prepareStatement("INSERT INTO Comunicats
    (vchTitle) "+
    "VALUES (?)");
    st.setString(1,vchTitle);
    if (st.executeUpdate() != 1) throw new
    EJBException();
    /** Now getting the Primary key inserted **/
    long sCodCom = ((IfmxStatement)st).getSerial();
    st.close();
    conn.close();
    where I'm getting the connection from a datasource
    (ds) connected to a Informix pool using that driver
    (com.informix.jdbc.ifxDriver)
    This code inserts the row but fails getting the serial
    value. The error message is:
    "java.lang.ClassCastException:
    weblogic.jdbc.rmi.SerialPreparedStatement (...) "
    Obviously, the cast ((IfmxStatement)st) doesn't work.
    If I change how to get the connection, and I use the
    DriverManager and declare a Statement st variable
    (instead of a preparedStatement variable):
    conn = DriverManager.getConnection(Informix_Url);
    Statement st = conn.createStatement();
    int nRet = st.executeUpdate("INSERT INTO ...");
    Then it works.
    But I don't wanna use the DriverManager. I wanna use
    my pool and datasource to get the connection.
    Has anybody tried something similar successfully?
    Thanks a lot.
    Joan.

  • Please Help with online gaming problem. Please.

    Hi. I am new to this website and I searched in the faqs but did not get much help. How do I play Age of Empires 2: Age of Kings with my cousin through online DirectPlay while the router is connected to my DSL modem? My cousin lives 9 to 10 blocks away from me and we usually use to play the game online through DirectPlay but ever since I got the router, he cannot enter my game any more. We don't play through a website or anything similar.
    Please Can someone help me.
    Info
    Computer: Windows XP Service Pack 2
    Router: WRT54G Version.8
    AT&T Yahoo DSL Modem
    Thank you for your time.

    This type of problem usually happens w/ DSL. On your PC lets try doing these steps. Open up Internet Explorer. On the address bar, just type the numbers 192.168.1.1 (username just leave it blank, password as default is admin). This should lead you to a linksys page. Go to status. On the status page, what is the Internet IP Address as listed there?

  • Please help with a display problem.

    I plugged in an external projector.  It is now disconnected but I can't get the screen to return to normal.  Help please.

    1. Attempt to put the system to sleep and wake it back up and see if that doesn't correct the issue
    (Command + Option+ Eject)
    2. If that doesn't work Click on the  in the upper left hand corner of the display and go to system preferences and check your display settings there.
    3. If that doesn't work attempt to restart the machine with the projector not connected
    I hope this helps!
    GL!

  • Please HELP with CrossDomain.xml problem

    I'm using Flex2 with Java as the backend. On my local machine
    everything works fine. When I deployed the Java war file to the
    hosting server and moved the swf there as well I keep getting the
    following error "Security error accessing url"
    faultCode="Channel.Security.Error". After reading on this it says I
    need a crossdomain.xml file put at the root of my server.
    I have placed a crossdomain.xml file at the following areas.
    C:\Inetpub\wwwroot\crossdomain.xml
    C:\Inetpub\vhosts\mysite.com\crossdomain.xml
    C:\Inetpub\vhosts\mysite.com\httpdocs\crossdomain.xml
    C:\Program
    Files\SWsoft\Plesk\Additional\Tomcat\webapps\crossdomain.xml
    the following is in the crossdomain.xml
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "
    http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <allow-access-from domain="*" to-ports="*" secure="true"
    />
    </cross-domain-policy>
    the war file is deployed here:
    C:\Program
    Files\SWsoft\Plesk\Additional\Tomcat\psa-webapps\mysite.com\testjava.war
    and the swf file is located here:
    C:\Inetpub\vhosts\mysite.com\httpdocs\test.swf
    I don't know what I'm missing. Please someone help me.

    daperk,
    You should post this to board "Smartphones, Nseries and Eseries Devices".

Maybe you are looking for

  • Upgrade 10 databases at a time without OEM

    Hi, I have ten databases in 10.2.0.2. standard edition on Linux platform. I want to upgrade all of them to 10.2.0.4 without using OEM. Is there any simple way to upgrade all of them to 10.2.0.4 instead of login to each and every server and upgrade. T

  • Rogue email address in mail accounts

    Hi,  I had a mobile me account.  When I transferred this to iCloud another email address (not mine) appeared, and is locked in my mail accounts.  I currently can read emails, but not reply from my iCloud account via the website, nor my iPhone, but th

  • Re: EnvMgr out of memory

    Thank you for the light you threw on this, In fact, we are already using a custom file-transfer solution for deploying the client partitions, so it is not what makes our EnvMgr running out of memory. It seems to be happening at random while the appli

  • How can I get through this Adobe Elements 9 error message

    It's been perfectly installed and I'm using a serial number. Everytime I try to go to an old project or create a new one it says "Sorry, a serious error has occured that requires Adobe Premiere Elements to shut down. We will attempt to save your curr

  • SQL database...busy....what's it doing?!?

    Today a R/3 sap system is very low in performance. We have checked on the TASK MANAGER and we have seen that it's due to a high use of CPU by SQL DATABASE. So....cause we don't have activate any strange activity on it we would like to monitor which a