Results 1 to 5 of 5

Thread: Scrollable Text Problem

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

    Default Scrollable Text Problem

    1) Script Title: Scrollable content

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex11/scrollc2.htm

    3) Describe problem: When I add the code to my page it deactivates my top rollover nav menu. My page link is http://www.ceedinc.net/main/home.html
    Last edited by jscheuer1; 10-27-2007 at 04:47 AM.

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

    Default

    I don't understand...

    there seems to be an error...
    is the menu suppose to move on the top where it says..
    | home | about us | services | prices | support | contacts |

    the top menu???

    EDIT: I think this is called spam. or maybe not...
    Last edited by insanemonkey; 10-27-2007 at 04:44 AM. Reason: edited
    Hey new design new look, goto xudas for personal webdsign help.. (:

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

    You have an onload conflict:

    Code:
    <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
    onLoad="preloadImages();MM_preloadImages('images/part1_f2.gif','images/part1_f3.gif','images/home_28_f2.gif','images/home_28_f3.gif','images/supo1_f2.gif','images/supo1_f3.gif','images/home_32_f2.gif','images/home_32_f3.gif','images/home_33_f2.gif','images/home_33_f3.gif')">
    and later:

    Code:
    window.onload=getcontent_height
    There are various ways to resolve this. The one that leaps to mind is removing the second bit of code, and combining it into the first like so:

    Code:
    <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"
    onLoad="getcontent_height();preloadImages();MM_preloadImages('images/part1_f2.gif','images/part1_f3.gif','images/home_28_f2.gif','images/home_28_f3.gif','images/supo1_f2.gif','images/supo1_f3.gif','images/home_32_f2.gif','images/home_32_f3.gif','images/home_33_f2.gif','images/home_33_f3.gif')">
    Last edited by jscheuer1; 10-27-2007 at 04:56 AM.
    - John
    ________________________

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

  4. #4
    Join Date
    Oct 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thank you for your response. I tried what john instructed to do but there is still no movement. To get a better understanding of how they sre suppose to work. click on the about page and just scroll over the nav menu (top menu).

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

    Quote Originally Posted by lwatson View Post
    I tried what john instructed to do but there is still no movement.
    Not on your live page. It still has the conflict. Interestingly, in Opera - which allows for both a body onload and a window onload, both scripts are working. Try my idea again. Put it up live. Let me see the page with the changes before telling me that it doesn't work.
    - John
    ________________________

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

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
  •