Results 1 to 3 of 3

Thread: Omni Slide Menu IE with background image offsets

  1. #1
    Join Date
    Sep 2007
    Location
    Ramona, CA
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Omni Slide Menu IE with background image offsets

    1) Script Title: Omni Slide Menu script by John Davenport Scheuer

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

    3) Describe problem:
    Ref: http://www.greenfees.com for IE only (other browsers work fine)

    The greenfees website has a background image. The Slide menu dislocates from the center to all the way at the bottom of web page (scroll to see)

    When the background image is removed, it works fine on IE

    Thanks
    Gerry

  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 valid page, or at least a DOCTYPE that invokes standards. Change:

    Code:
    <link rel="stylesheet" type="text/css" title="main" href="/layout/stylebg.css">
    
    
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 FINAL//EN">
    <HTML>
    <HEAD>
    	<TITLE>World Golf</TITLE>
    	<META NAME="GENERATOR" CONTENT="WebDesigner/0.1.6">
            <meta name="Description" cont . . .
    to (HTML 5):

    Code:
    <!DOCTYPE html>
    <HTML>
    <HEAD>
    	<TITLE>World Golf</TITLE>
    <link rel="stylesheet" type="text/css" title="main" href="/layout/stylebg.css">
    	<META NAME="GENERATOR" CONTENT="WebDesigner/0.1.6">
            <meta name="Description" cont . . .
    or to (closest comparable valid URL DOCTYPE):

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML>
    <HEAD>
    	<TITLE>World Golf</TITLE>
    <link rel="stylesheet" type="text/css" title="main" href="/layout/stylebg.css">
    	<META NAME="GENERATOR" CONTENT="WebDesigner/0.1.6">
            <meta name="Description" cont . . .
    There still could be problems though, the entire page is sort of sloppily coded. But just this much will probably take care of this issue.
    - John
    ________________________

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

  3. #3
    Join Date
    Sep 2007
    Location
    Ramona, CA
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    John. Thank you for the quick response and suggestion. It worked perfectly. I agree my code is a bit sloppy, ok....sloppy. I took bits and pieces of several DD resources over the years and strung them together (ref lead sheet http://www.greenfees.com). Someday when time allow., I will clean it up in accordance with SEP (Software Engineering Procedures) Right now its only me and I am wearing ALL the hats. I thank you once again!!!

    Gerry

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
  •