Results 1 to 4 of 4

Thread: Omni Slide Menu IE 7 Problem

  1. #1
    Join Date
    May 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Omni Slide Menu IE 7 Problem

    1) Script Title: Omni Slide Menu

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...lide/index.htm

    3) Describe problem: The version that shows the slide menu at the top works fine with every browser (IE up to 6 Service Pack 2, Maxthon, Netscape, etc) EXCEPT for IE 7. With IE 7 instead of beint centerred at the top of the page, it appears at the left and even at that, only the right most half of the menu can be read.

    For reference, go to www.healey6.com using IE7.

    Is there a fix for this???

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Use a DOCTYPE for your page (index_m.htm):

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    or:

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
    Using a more proper header and style actually selected for your menu would be a good idea as well, ex:

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <HEAD>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <META name="description" content="Home">
    <META http-equiv="GENERATOR" CONTENT="Created with CuteSITE Builder, HTML Exporter 5.0.150"> 
    <style type="text/css">
    
    #menu2 a:link		{color:black;text-decoration:none;}
    #menu2 a:hover	{color:black;text-decoration:none;}
    #menu2 a:active	{color:black;text-decoration:none;}
    #menu2 a:visited	{color:black;text-decoration:none;}
    
    </style>
    
    <script src="mmenu.js" type="text/javascript"></script>
    <script src="menuItems.js" type="text/javascript">
    
    /***********************************************
    * Omni Slide Menu script - © John Davenport Scheuer: http://home.comcast.net/~jscheuer1/
    * very freely adapted from Dynamic-FX Slide-In Menu (v 6.5) script- by maXimus
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full original source code
    ***********************************************/
    
    </script>
    </HEAD>
    This still isn't exactly to standards, but much better than the way you had it.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    May 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    This did not fix the problem. I have worked through with a dozen or so regular viewers of this particular site and have discovered two things:

    1. Some IE7 users with a IE7 XP combination have a problem with the menu appearing cut off on the side (my second computer does this with that ombination. Some do not.

    2. So far ALL using Vista have the problem regardless of the IE version.

    I am stumped.

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •