Results 1 to 8 of 8

Thread: drop down problem

  1. #1
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default drop down problem

    I added a new drop down a web page but for some reason in I.E. every time you pass the mouse over one of the drop downs it increases the height of the page. Its fine in Netscape. Any idea whats going on?

  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

    Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format for asking a question.
    PLEASE: Include the URL to your problematic webpage that you want help with.
    - John
    ________________________

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

  3. #3
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Url

    Opps sorry, here is the URL. Thanks - http://www.aepona.com/home/test/new_test/ok.html

    Mickey

  4. #4
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Is this a Dynamic Drive menu script? I can't tell based on the source of your page.

  5. #5
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default AnyLink Drop Down Menu

    Yes, its the AnyLink Drop Down Menu.

  6. #6
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default drop down

    Anyone please? Thanks!

  7. #7
    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

    Please include the script credit on your page, use:

    Code:
    <script src="menu.js" type="text/javascript">
    /***********************************************
    * AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    </script>
    in place of:

    Code:
    <script language=JavaScript src="menu.js" type=text/javascript></script>
    Now, as to your problem, where you have:

    Code:
    <style type="text/css">
    <!--
    body {
    	margin-left: 0px;
    	margin-top: 0px;
    	margin-right: 0px;
    	margin-bottom: 0px;
    	min-height: 100%;
    	height: 100%;
    	min-height: 100%;
    }
    
    -->
    </style>
    Make it:

    Code:
    <style type="text/css">
    <!--
    body {
    	margin-left: 0px;
    	margin-top: 0px;
    	margin-right: 0px;
    	margin-bottom: 0px;
    }
    
    -->
    </style>
    Or, if you like the extra space at the bottom:

    Code:
    <style type="text/css">
    <!--
    body {
    	margin-left: 0px;
    	margin-top: 0px;
    	margin-right: 0px;
    	margin-bottom: 0px;
    	height:615px;
    }
    
    
    -->
    </style>
    - John
    ________________________

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

  8. #8
    Join Date
    Oct 2005
    Posts
    18
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default drop down

    John, you’re a legend. 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
  •