Results 1 to 5 of 5

Thread: some scripts not working in marquee tags

  1. #1
    Join Date
    Jun 2005
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default some scripts not working in marquee tags

    on my blog giyang.blogspot.com, if you roll your mouse over the lyrics of the song you may notice that something goes wrong. The trail will not follow the script inside the song lyrics. Does anyone have any suggestions on how to make that work? Thanks in advance!

  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

    I took a look at your sight. Too slow to load! Way too slow, and I have broadband! I'd think that cursor thing would be a 'feature', at least that way you can read the lyrics, and it makes 'em stand out. If you are determined to get both cursor effects working in that region, try declaring the custom cursor in the style for marquee and div as well as for body. Right now you have something like this:
    Code:
    body {
    cursor:url('somecursor.ani')
    }
    make it more like this:
    Code:
    body {
    cursor:url('somecursor.ani')
    }
    div {
    cursor:url('somecursor.ani')
    }
    marquee {
    cursor:url('somecursor.ani')
    }
    If anything will, that will get the party hat over the marquee. Those bouncing balls though, are they really in another frame or something? That's what it looks like. If not, it might be because the marquee is relatively positioned. Or, both problems could be a side effect of the music player and/or counter. Try taking them off, one at a time, temporarily - just to see. If they are the problem, maybe you can move them to a different spot on the page.
    - John
    ________________________

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

  3. #3
    Join Date
    Jun 2005
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Thanks!

    Ei I think ill try that out! Thanks a lot!

  4. #4
    Join Date
    Jun 2005
    Posts
    13
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Thanks!

    I already tried it out and now i have the ball trail working already... I just changed the position to absolute instead of relative. Cant believe thats all it took! Now ill start working on making the custom cursor work inside that. Thanks a whole lot! Yeah, i know what you mean about my blog being slow. It takes me a while to load as well... gotta remove some scripts or something.

  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

    Some things that will speed the page load without removing anything:

    - Compress all images to as low a resolution as possible (use an image optimization program like xat.com's image optimizer, if possible, or any image program that will let you save to a lower resolution). Keep backups of your originals!

    - Reduce the length and/or quality of the music.

    - Delay loading as many scripts execution as possible until the page has loaded (onload) - get the text and graphics parts of the page loaded first.

    - Remove as many nested tables (if any) as possible by finding another way to format the content.
    - 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
  •