Results 1 to 3 of 3

Thread: Pausing up-down scroller - links not working in IE

  1. #1
    Join Date
    Mar 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Angry Pausing up-down scroller - links not working in IE

    1) Script Title: Pausing up-down scroller

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex2/crosstick.htm

    3) Describe problem:

    I'm using just the 2nd narrow scroller on a site and after losing the CSS battle with IE6 and 7 to get the text centred in the scroller, I added <div align="center" </div> around the existing message arrays so they now look like this:

    pausecontent2[0]='<div align="center"<a href="events.html">Lowick Village Open Day - Sunday 1 June, 2pm to 6pm</a></div>'

    Well it solved my centring problem but has created another one! Everything is fine in Firefox but now the links don't work in IE. If I take the align center divs away they work, put them back and they don't work

    I am at a loss as to how to fix this and could do with some ideas before I lose the last shred of sanity that I've managed to hang on to today!

    Many thanks
    Sarah

  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

    There could be other problems, but this is just wrong:

    Code:
    pausecontent2[0]='<div align="center"<a href="events.html">Lowick Village Open Day - Sunday 1 June, 2pm to 6pm</a></div>'
    And I'm surprised that it works at all in any browser. It should be:

    Code:
    pausecontent2[0]='<div align="center"><a href="events.html">Lowick Village Open Day - Sunday 1 June, 2pm to 6pm</a></div>'
    If you need more help:

    Please post a link to the page on your site that contains the problematic code so we can check it out.
    - John
    ________________________

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

  3. #3
    Join Date
    Mar 2008
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    no other problems, that was it (...oh the embarrassment )

    Thank you
    Sarah

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
  •