Why is my page collapsing in older browsers?

I tested my page in Firefox 3.5.2 and IE 8 (actually 8.0.6001.18702) and it works fine.  But when I tested it on another machine and used IE 7. the footer and main (body) area collapsed over the header.  Can anyone check it out and let me know how I can make changes for all browser types?
Here is the link: http://shepardsuperteam.com/chris/index.html

Run your code through the on-line validation tools below and fix any reported errors.  You have a malformed division ID near the end of your page.  No spaces allowed in Div IDs.
HTML Validator - http://validator.w3.org 
CSS Validator - http://jigsaw.w3.org/css-validator/  
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • Why won't my Edge Animate play on older browsers (IE 7 for example)?

    I've created an Edge animation (marquee) banner for a site I'm working on, but when I check it on older computers (for example XP running IE7), all I see is a large white rectangle where the marquee is supposed to be. Any ideas?

    Hey there,
    Animate only supports Animated content in modern browsers. IE <8 doesn't have the capability to handle some of the newer HTML languages. We do have an option to display a static poster image for older browsers and you can add links to different images.
    Check out the poster/downlevel options which is what users will see on browsers that don't support CSS3.
    You can also use Chrome Frame as an option to display animated content on older versions of IE. You can find this in the publish settings.
    Sarah

  • Team Blog: Why does my page look different in BrowserLab?

    Duane O'Brien, engineer on the BrowserLab team has a new blog post on the BrowserLab Team blog that you might find interesting. It covers when/why you might see rendering differences between the BrowserLab browsers and your local browsers. Good info.
    http://blogs.adobe.com/browserlab/2011/07/11/why-does-my-page-look-different-in-browserlab /
    Bruce
    Bruce Bowman
    BrowserLab product manager
    BrowserLab Team Blog: http://blogs.adobe.com/browserlab
    Twitter: @brucebowman, @adobebrowserlab

    As Wyodor indicated IE is not the most advance, up-to-date browser out there.
    See Roddy’s tips for making iWeb pages more compatible with IE.
    OT

  • How to disable the alert message that comes in older browsers while loading

    Hi!
    I'm testing the ADF Rich faces app on Firefox 2.0.01.
    It's working fine, but still I get the Error "" You are using unsupported Gecko Browser,the Supported Gecko browsers are 2.0.02 and higher".
    I don't want that message to be displayed to the user, though he may be using older browsers..
    I Suppose the application developer can handle it according to the demands of the of the situation...
    Can you suggest a way to disable that alert message which is very annoying to the user , every time a page is loaded ?
    Thanking you in advance,
    Samba

    I filed your complaint as an ER. For tracking purposes the ER number is 6160631.
    --RiC                                                                                                                                                                               

  • XML on Older Browsers

    Hi,
    I have a client-side XSL component of my client's home page
    so had to convert the page to XSLT. The page contains a Spry Tabbed
    component with XSL-formatted XML data.
    So when a user enters the domain name, I want the XML page to
    display first so I put that in the htaccess file as the default
    index.
    But since older browsers are not XML compliant, how can I
    display a non-XML ( plain HTML page ) for them? I don't think I can
    put any logic in the xml or stylesheet since the XML file will not
    be recognized by the older browser.
    Is my only choice a straight index page that does redirects
    based on the detected browser? That sounds like an awful kludgey
    solution.
    Should I give up on this and try XSL fragments server side
    even though that's a bit beyond my current skillz? Is it correct to
    think I can call an XSL fragment within an HTML page?
    Thanks all for any advice

    Hey there,
    Animate only supports Animated content in modern browsers. IE <8 doesn't have the capability to handle some of the newer HTML languages. We do have an option to display a static poster image for older browsers and you can add links to different images.
    Check out the poster/downlevel options which is what users will see on browsers that don't support CSS3.
    You can also use Chrome Frame as an option to display animated content on older versions of IE. You can find this in the publish settings.
    Sarah

  • Supporting XHTML and older browsers (IE6) in WLP 9.2

    Hi
    We're trying to have a Portal that renders XHTML-1.0-TRANSITIONAL content.
    In order to support older browsers, we have content-override set to "text/html".
    However, WLP renders the script tags that link directly to .js files with just one self-closing tag.
    <script src="/front/framework/skins/shared/js/Utils2.0.js" type="text/javascript" />
    This confuses browsers, as it should (for compatability reasons) close it with an end tag, with emtpy content.
    <script src="/front/framework/skins/shared/js/Utils2.0.js" type="text/javascript"></script>
    Is there any way to control this behaviour?
    Skeleton.xml
    <ns:skeleton xmlns:ns="http://www.bea.com/servers/portal/framework/laf/1.0.0">
    <ns:render-format>
         <ns:preset>XHTML_1_0_TRANSITIONAL</ns:preset>
                   <ns:content-type-overrides>
                        <ns:override content-type="text/html" classification="allbrowsers"/>
                   </ns:content-type-overrides>
         </ns:render-format>
    </ns:skeleton>
    client-classifications.xml
    <classification name="allbrowsers" description="For everything">
         <useragent-regex value=".*" priority="5" />
    </classification>
    beehive-netui-config.xml
    <jsp-tag-config>
         <doctype>xhtml1-transitional</doctype>
    </jsp-tag-config>
    ...

    Hi George and thank you for providing an answer to my problem.
    We have actually worked around this. It's the same JS we are including on all pages, so we are doing this in head.jsp instead.
    However, we have found another XHTML compliance problem. This is hopefully the last one though. ;)
    When using NETUI, it will include a javascript for looking up tags by id.
    <script language="JavaScript" type="text/JavaScript">
    <!--
    // lookup by tagId to "real id"
    function lookupIdByTagId(id, tag)
    var idScope = lookupIdScope(tag,".");
    return (idScope == "") ? id : idScope + id;
    //Non-Legacy lookup method creating a fully qualified scope id
    function lookupIdScope(tag,sep)
    var val = "";
    if (sep == null) sep = "";
    while (tag != null && tag.getAttribute != null) {
    try {
    var attrVal = tag.getAttribute("netui:idScope");
    } catch (e) { /* ignore, in IE6 calling on a table results in an exception */ }
    if (attrVal != null)
    val = attrVal + sep + val;
    tag = tag.parentNode;
    return val;
    // map tagId to "real name"
    if (netui_tagIdNameMap == null)
    var netui_tagIdNameMap = new Object();
    netui_tagIdNameMap.newName="createDecistionTree_1{actionForm.newName}"
    // lookup by tagId to "real name"
    function lookupNameByTagId(id, tag)
    var idScope = lookupIdScope(tag,"_");
    if (idScope == "")
    return netui_tagIdNameMap[id];
    else
    return netui_tagIdNameMap[idScope  + "__" + id];
    -->
    </script>
    The problem here is the language="JavaScript" part, since that is not valid XHTML.
    I would have thought that NETUI should respect the <jsp-config><doc-type> set to XHTML, but maybe I'm overseeing something?

  • Which older browsers don't work with iWeb '08?

    I've created a new site in iWeb using a blog page as the default page. My wife couldn't see any of the blog entries using an older Mac and Safari 1.x. So that makes me wonder, what other older browsers are incompatible with iWeb?
    Specifically since so many Windows users are still stuck with IE6, I wonder if these users could see my site at all? If not, I'm going to have to re-create the site using other software.
    Would anyone who has access to IE6 for Windows be willing to check out http://www.gardensofstationpointe.com and let me know if you can see the blog entries listed?
    Thanks.

    Thanks for checking. I actually switched the site to RapidWeaver since I asked the question. I was afraid the original iWeb site wouldn't work with older browsers. I forgot to come back here and make note of it. Thanks.

  • Does anyone know why a web page would suddenly pop up telling me I have a computer virus and need to call them?  When I've called they said they needed access to my computer in order to fix the problem - which I didn't do.  Is this legit?  An Ad?

    Does anyone know why a web page would suddenly pop up telling me I have a computer virus and need to call them?  When I've called they said they needed access to my computer in order to fix the problem - which I didn't do.  Is this legit?  An Ad?

    That is not legit, it is a scam to gain access to your computer and information.
    You can protect against pop-up adware with the AdwareMedic tool Thomas Reed has http://www.thesafemac.com Tom is a major contributor on these communities and great security guy.

  • Why does the page not move smothe when i scroll?

    Why does the page not move smothe when i scroll?
    Sometimes it even move slower then i Scroll?
    I use a Mac and i have tried to reinstall the program.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    In Firefox 4 [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    * Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    See:
    * [[Troubleshooting extensions and themes]]

  • Why does redirect page open in a frame?

    Why does redirect page open in a frame? I don't see the point. Can it be made to open in it's own window?

    We now support an option for having the redirect for an embedded form take over the entire window. This FAQ explains:
    http://forums.adobe.com/docs/DOC-1991
    Randy

  • HT4641 Im trying to print off my cv, page 1 prints off fine but page 2 does not, I'm using the selected template for curriculum vitae why does my page 2 not print?

    Im trying to print off my cv, page 1 prints off fine but page 2 does not, I'm using the selected template for curriculum vitae why does my page 2 not print?

    Hi @kots 
    I suspect your question would be better answered in the HP Enterprise Business Community, as your HP Printer is a commercial model.
    My technical expertise is with consumer products and software, I am sure the commercial folks would be happy to help if you re-post your question for them to answer. The HP Enterprise Business Community is an HP Forum designed for the Commercial and Enterprise customers to help one another. I am sure you will find some HP folks there to help too.
    Click here to view the Printing and Digital Imaging. When the page opens you will see the option to 'Log in' or 'Register Now' on the right. The commercial forums are separate from the consumer boards, thus you will need to register if you don't already have a commercial account.
    You may find the HP LaserJet M2727 Multifunction Printer series page helpful while you wait for somebody in the commercial Forum to respond to your inquiry.
    Best of luck.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • PNG8 and 32 in older browsers

    Im making a site that has a semi transparent image as a background image for a div with text.
    Im looking at using a PNG8 or 32, but how and will these degradee in older browsers? If they become opaque thats fine, but if they dissapear then the text will be hard to read.
    Thanks

    In IE6 any transparent png will appear with a grey box. You can use this png fix to solve that problem
    http://www.twinhelix.com/css/iepngfix/

  • Why can't i install an older version of Flash for IE9 after uninstalling the new version?

    Having uninstalled version 11.2.202.233 due to audio problems, why can i not install an older version (11.1.102.62) for IE9?

    You should install the updated version 11.1.102.63 that contains a security update.
    spookthephantom wrote:
    why can i not install an older version...?
    I don't know; what happens when you try?

  • How to resolve this: Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, using the older version, or using basic HTML mode.

    Keep getting this message while using Gmail "Some Gmail features have failed to load due to an Internet connectivity problem. If this problem persists, try reloading the page, using the older version, or using basic HTML mode. "
    I have to use the older version of gmail for it to work properly.

    now i cant even send emails out of gmail, except when using the older version.

  • Why are two pages yoked when I prepare a newsletter in Pages?  How can I delete one without the other?

    Why are two pages yoked when I prepare a newletter?  How do I delete one without the other?

    They are all part of one Section. Just as you do not (hopefully) rip pages out at random from books, the pages of a Section are linked by the text that flows from one to the other.
    If you want to move or delete particular page/s Insert a Section Break at the end of the page before.
    Peter

Maybe you are looking for