Results 1 to 3 of 3

Thread: jquery alignment issues with IE7

  1. #1
    Join Date
    Dec 2009
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default jquery alignment issues with IE7

    I am using a jquery drop-down menu and inserting it as a server-side include file in a new site design. problem is, it seems to be out of alignment when viewing in IE7 (and I am assuming earlier versions too) although it looks fine in Firefox and even IE8. I am stuck as to what could be causing this or what to try. here is the new site in question:
    http://www.ssb-cpa.com/ssb-final/index.asp

    any help would be appreciated!

  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

    Get rid of this:

    Code:
    <!--[if lte IE 7]>
    <style type="text/css">
    html .jqueryslidemenu{height: 1%;} /*Holly Hack for IE7 and below*/
    </style>
    <![endif]-->
    from the include.

    In an unrelated matter, this:

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    this:

    Code:
    </head>
    <body>
    and this:

    Code:
    </body>
    </html>
    on the include are resulting in invalid HTML code for the pages that the include is used on. They should be removed from the include.
    - John
    ________________________

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

  3. #3
    Join Date
    Dec 2009
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    John - you are a life saver! I knew it had to be something simple but could not figure it out. thanks a million!!!

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
  •