Please help! Site doesn't look right in IE, but is good on all other browsers

I can't figure out why MS Internet Explorer isn't displaying the main images on the front page correctly, is jumbling words on the back pages, and isn't displaying the "Share This" bar correctly. The site displays everything properly in Firefox, Chrome and Safari...argh! Hope someone has some insight...Thanks in advance for looking!
http://getyoudry.com/index.html

Change the first line from
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
which is invalid and sends IE in Quirks mode to
<!DOCTYPE HTML>
or
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

Similar Messages

  • Site doesn't look right after being published

    I'm a website newbie, and I think I have bitten off more than I can chew. Designed my site, published it, used websafe fonts all the links worked. Look great in Safari on my computer. Then I tried to check it out on the PC with IE... yikes!! So I did some research and saw that's a common IE problem, so tried to view it in Firefox on the PC, looked worse. So I downloaded Safari for the PC... same problem, it looked terrible- text boxes were shifted, flash was coming to the front and covering links, you could see the bounding boxes on some of the pics. eeeeekkkk.
    here's the URL if anyone wants a good laugh!!
    www.rrcaninesuites.com
    Thanks!
    - Kath

    The site looks OK -- actually quite impressive for what appears to be a from-scratch design.
    In Opera 10 under Snow Leopard 10.6.1, the design doesn't start to explode until the horizontally scrolling marquee comes across. I would strongly recommend just removing that marquee; it is an extremely outdated element of web design. If you do that, the design shouldn't blow up on you in other browsers.

  • I have loaded the new Flash version into Firfox several times, but none of my sites recognize it when using Firefox. It works fine on all other browsers, but I would prefer to use Firfox if this problem can be solved.

    I use Firefox 4.0.1 on a Mac running Os X10.5.8. When I try to run Facebook or other sites that are heavy users of Flash I get a message that the new version of Flash must be loaded. I have loaded the latest version several times, but still get the message and these sites will not run on Firefox. The sites run fine with Safari or Chrome but I prefer to use Firefox if it can be made to run these sites. Thank you for any suggestions you have to help fix this problem.

    Apparently it's related to the Firefox plug in.
    This isn't exactly a solution but more of a way to avoid opening PDFs with Firefox's plug in.
    1. Highlight "Tools" from the Menu Bar in the top left of the screen (or click "Options" if using the Firefox Compact Menu)
    2. Select to "Options
    3. Select "Applications"
    4. Look for "Adobe Acrobat Document" under Content Type and to the right under Action select "Use Adobe Reader (default)" instead of the using Adobe Acrobat in Firefox
    5. Open a test PDF. It should open in it's own window now.
    Again, not a complete solution but something that'll at least let you scroll with PDFs open.
    More info here: http://forums.mozillazine.org/viewtopic.php?f=38&t=2171033

  • Please help: render doesn't look like preview

    Hello everybody,
    maybe this is a stupid question, but I'm a new user and I'm really confused.
    To cut it short, I'm editing a video in Premiere CS5 and everything looks nice when I'm working: preview window shows everything just the way I want it to look like.
    But when I render (I tried different export types, from avi to mp4 to mov, always the same result) transparency is messed up: I can't even explain it, so I will post two images.
    This is how my psd logo with transparency looks like in preview window:
    The outer glow is perfect.
    But when I export the timeline it looks like this:
    I have the same problem with imported movs with transparency.
    Does anybody know what is the problem and how I can fix it?
    Many thanks in anticipation.

    Thanks you too, Colin, you gave me a useful hint even tho it worked inversely.
    I had to disable Maximum Render Quality to make it render correctly!
    Thanks to the both of you, anyway, problem solved!

  • Please help: data doesn't get through when using NIO's UDP

    Hi there, I have a 2D client-server game, using NIO's UDP. Whenever the clients send data to server, the data just disappears and not exception nor error appear at the server side.
    Following are the portions of the code where the problem occurs, please help me have a look, many thanks.
    (Please note, I'm using non blocking mode for both client and server, and have no problems with other portions of code, communication was fine, data did get through the network and processed by the server/client. Also, client's DatagramChannel "dChannel" is connected to server, however server's DatagramChannel is not connected to any one).
    //***client's sending code***
    public void sendEventToServer(int[] values) {
        prepWriteBuffer(values);
        try {
          dChannel.write(writeBuffer);
        catch (Exception ioe1) {
          System.out.println("Error when send event to server");
    public void prepWriteBuffer(int[] values) {
        writeBuffer.clear();
        writeBuffer = ByteBuffer.allocate(128);
        if (values[0] == 1) { //fire event
          writeBuffer.putInt(0, firePacketNum);
          firePacketNum++;
        else if (values[0] == 2) { //positional event
          writeBuffer.putInt(0, positionalPacketNum);
          positionalPacketNum++;
        else {
          writeBuffer.putInt(0, -1);
        int j = 4;
        for (int i = 0; i < values.length; i++) {
          writeBuffer.putInt(j, values);
    j += 4;
    writeBuffer.flip();
    //***server's code*****
    public void sReceive(long startTime){
        do {
          readBuffer.clear();   //note, readBuffer is 3072 bytes, bigger than client's sending buffer
          InetSocketAddress sourceAddr = null;
          // read from the channel into our buffer
          try {
                 sourceAddr = (InetSocketAddress) dChannel.receive(readBuffer);
          catch (Exception ioe) {
                 System.out.println(ioe);
          // check for end-of-stream
          //I tried with "if (readBuffer.hasRemaining())", getting the same "data disappearing" problem
          if (sourceAddr == null) {
                 //*********Problem: no matter how often the client is sending, this "if" clause is always entered
                 //that is, data disappeared
                 System.out.println("Server got nothing so breaks.");
                 break;
          else {
                 //******Problem: client keeps sending, but this "else" is never entered.
                 System.out.println("Server now got someting from client.");
                 readBuffer.flip();
                 broadcastEvent(readBuffer, sourceAddr);
        while ((System.currentTimeMillis() - startTime) < 134);

    Here's how the buffer filling stuff works, Ron Hitchen's JAva NIO O'Reilly press, has lots of good diagrams of this.
    buf = ByteBuffer.allocate(10)  // creates new buffer
      0----1----2----3----4----5----6----7----8----9----10
      |    |    |    |    |    |    |    |    |    |    |
      ----------------------------------------+
      ^                                                 ^
      |                                                 |
    position=0                                       limit=capacity
    buf.putInt(5);  // relative put, updates position
      0----1----2----3----4----5----6----7----8----9----10
      | 00 | 00 | 00 | 05 |    |    |    |    |    |    |
      ----------------------------------------+
                          ^                             ^
                          |                             |
                       position=4                    limit=capacity
                       updated
    buf.putInt(4,12);  // absolute put doesn't update position
      0----1----2----3----4----5----6----7----8----9----10
      | 00 | 00 | 00 | 05 | 00 | 00 | 00 | 0c |    |    |
      ----------------------------------------+
                          ^                             ^
                          |                             |
                       position=4                     limit=capacity
    buf.position(8);  // so we set the position ourselves
      0----1----2----3----4----5----6----7----8----9----10
      | 00 | 00 | 00 | 05 | 00 | 00 | 00 | 0c |    |    |
      ----------------------------------------+
                                              ^         ^
                                              |         |
                                         position=8   limit=capacity
    buf.flip();  // flip prepares for write
      0----1----2----3----4----5----6----7----8----9----10
      | 00 | 00 | 00 | 05 | 00 | 00 | 00 | 0c |    |    |
      ----------------------------------------+
      ^                                       ^         ^
      |                                       |         |
    position=0                             limit=8   capacity
    channel.write(buf); // write it out, assume all gets written
      0----1----2----3----4----5----6----7----8----9----10
      | 00 | 00 | 00 | 05 | 00 | 00 | 00 | 0c |    |    |
      ----------------------------------------+
                                              ^         ^
                                              |         |
                                  position=limit=8   capacity
    if it didn't all go out, the position would indicate the
    first unwritten byte.

  • I have manipulated a photo using layers etc and then flattened it and saved it under a new name.  When I use 'Preview' (mac) to view the finished photo it doesn't look right.  It's as the layers have not flattened correctly.  When viewed in Elements 12 it

    I have manipulated a photo using layers etc and then flattened it and saved it under a new name.  When I use 'Preview' (mac) to view the finished photo it doesn't look right.  It's as the layers have not flattened correctly.  When viewed in Elements 12 it looks OK.  The photo looks incorrect in other software such as photo books.
    Looking at the same photo before flattening, what is being shown is only the top layer.
    How do I correct this?

    STEVEN1A wrote:
    I have manipulated a photo using layers etc and then flattened it and saved it under a new name.  When I use 'Preview' (mac) to view the finished photo it doesn't look right.  It's as the layers have not flattened correctly.  When viewed in Elements 12 it looks OK.  The photo looks incorrect in other software such as photo books.
    Looking at the same photo before flattening, what is being shown is only the top layer.
    How do I correct this?
    The top layer is indeed the one that is visible, unless there is/are area(s) of translucency on that layer, so that you can visualize a portion of the subjacent layer.
      the finished photo it doesn't look right.  It's as the layers have not flattened correctly. 
    Are your settings targeted to have the printer manage colors, or, to have PSE manage colors?

  • Please help me!!! Right now i stay in Malaysia but i use USA itune account for buy an apps. Here ive screwed up because of my payment were decline. Any help guys!

    Please help me!!! Right now i stay in Malaysia but i use USA itune account for buy an apps. Here ive screwed up because of my payment were decline. Any help guys!

    If you've had it for less than a year, then it's still under warranty.  Take it to an Apple store or an authorized service facility.  See http://support.apple.com/kb/HT1434

  • Please Help, iTunes has taken my right to play certain songs

    Please Help, iTunes has taken my right to play certain songs.
    These were free songs with coco-cola codes some time ago.
    Now in Mtn Lion it has took the playing rights from me and locked them off!
    Anybodys help on this subject is much appreciated...

    Yes it worked,
    Right-click in it > Show in Finder. Finally, right-click in that file > Get Info > Sharing & Permissions. See if you have got read permission,
    Clicked through the Get Info > Sharing & Permissions and when I closed the window the song played again.
    Not sure why but it worked for me!

  • I can't get the product i bought need help NOW doesn't let me connect when i have good internet

    i can't get the product i bought need help NOW doesn't let me connect when i have good internet

    [personal information should not be posted - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    https://www.adobe.com/account.html to check your subscriptions
    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Some general information for a Cloud subscription
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html

  • Please Help! I tried to upgrade Flash Player, but have older computer

    Please Help! -- I tried to upgrade FLASH PLAYER, but I have an older MAC laptop OS X 10.4 = Version 4.1.3 (4533.19.4). 
    I need to UPGRADE Flash Player; however it's not available -- Recently, I cannot watch some videos or access particular websites.
    I'm a teacher, and CAN'T AFFORD to buy  a new computer at this time.
    > Can Adobe Corp. please help by offering an expanded range of UPGRADE support ??

    Unfortunately, if you're running OS 10.4, odds are that your Mac is a PowerPC model (-About This Mac will let you know for certain), and the newest version that will run on your system is Flash Player 10.1.102.64 and 9.0.289.0 (126 MB)
    That's a direct link to the download, you can right click (or control+click) and save it to your downloads folder. Expand it with Stuffit Expander and run the 10.102.64 installer.
    That's the best that can be hoped for because if your Mac is PowerPC, and I suspect it is, even Apple no longer supports it since September of 2009. The next OS X version (10.5) won't run the latest Player either. You'd need an Intel Mac with 10.6.3 or newer to use Flash Player 11.8.800.94.
    PowerMax does have some really good deals on "pre owned" Macs. I've bought three from them myself over the years.

  • I have a php module which runs fine in Firefox and all other browsers but not Safari. It always run twice - I see a small ? in upper right corner which is causing it to run twice but NO idea why? Help - thank you

    I have a php module which runs fine in Firefox and all other browsers but not Safari. It always run twice - I see a small ? in upper right corner which is causing it to run twice but NO idea why? I read it MAY have something to do with am image it cannot load but I see them all loaded.  Help - thank you

    Could you share a link to the page?
    Seeing it in context and in our browsers is much easier to debug.
    If not, make sure to run the validator here The W3C Markup Validation Service and clear out any problems. HTML errors, especially structural ones, will cause all kinds of display problems in various browsers/versions/platforms.

  • I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

    I have problem in quicklook for mp4 files in my mountain lion os 10.8.2 so please help me what i need to do? but i can view mov,3gp,jpeg files problem is only with mp4 files.... any one help me...

  • HT4539 All my old tv shows are not working please help my computer sed I have to Atheris 5 computers to play all my old tv shows I Pade for with eney Itunas cards. :( :'(

    All my old tv shows are not working please help my computer sed I have to Atheris 5 computers to play all my old tv shows I Pade for with eney Itunas cards.

    What do y mean by not work?
    What happens when y try to play them on yur iPod?
    What happens when yo try to play them in iTunes on yur computer?
    If you get a message what is the exact wording of the message?
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        
    Some countries do not allow redownloads some kinds of media

  • HT203167 I can't even find the app in the store. Please help. I contacted the camadu app support but they haven't rep

    I bought the app peru tv in march. Sometimes it stays idle when downloading a tv channel so I ended up deleting the app and reinstalling it. Today I can't even find the app in the store. Please help. I contacted the camadu app support but they haven't replied regarding problems with channels and lost app

    In order to properly upgrade the OS of your Mac.  10.1  Puma is really old.  Your Mac has to meet the tech specs for Lion:  And it would probably need to be a clean install.  If you recently purchased Lion.  Call Apple Care CPU and ask them to be sure.  You get 90 days Free of phone support.  1-800-275-2273
    Apple - OS X Lion - Technical specifications 
    General requirements
    Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7, or Xeon processor
    2GB of memory
    OS X v10.6.6 or later (v10.6.8 recommended)
    7GB of available space
    Some features require an Apple ID; terms apply.

  • Yesterday I have purchased Ipad2 with 3G but did not able see in built aceTime on my scree do we need to Install? please Help, yesterday I have purchased Ipad2 with 3G but did not able see in built FaceTime on my scree do we need to Install? please Help

    yesterday I have purchased Ipad2 with 3G but did not able see in built aceTime on my scree do we need to Install? please Help, yesterday I have purchased Ipad2 with 3G but did not able see in built FaceTime on my scree do we need to Install? please Help.

    See this support doc on how to use FT... http://support.apple.com/kb/HT4319

Maybe you are looking for

  • Any ideas for software to allow client insertion of photos/text

    My client is looking for cost savings by asking his employees to do their own brochures using the design that I have created as the template. Employees have no InDesign etc experience. This must be super simple. Can anyone point me toward a software

  • Help me reset my hp mini that's on windows xp pleaseeeee

    Hello my hp mini 110 windows xp is very slow and cluttered with stuf I don't. Need but I need it to be reset to factory settings I do not want any links just tell me how to reset it back to normal state like I just got it I've tryed going into the me

  • PC Suite 7.1.40.1 Content Copier does not work.

    The Content Copier in PC Suite 7.1.40.1 fails to Backup the Data from the Phone. "The phone did not contain any content ..." All Attempts to uninstall, delete Directories and Registry Keys did not help. The Content Copier from 7.1.30.9 works fine. OS

  • Screen Flickers, Goes White, Goes Grey but Computer Responds Normaly

    Ok, this has to be the right place to post, apparently I put this in the wrong thread originally. This is a new one on me. This started out of the blue. Sorry for the long post but I was trying to think of as much info as possible. The screen on my p

  • PVIVImageView crash - large image support in 10.6 got MUCH worse

    I have been making lots of panoramas and 10.5 had great support - both Safari and Preview were fast and never crashed due to the large images. As soon I installed 10.6 I was immediately disappointed by the speed - the tiling display thing has problem