It should be marquee, not marquee0:
Code:
<div class="marquee0" id="mycrawler23">
<span class="category_r_text"><a href="#">aaaaaaaaaaaaaaaaaaaaaaaaaaaa</a></span>
<span class="category_r_text"><a href="#">bbbbbbbbbbbbbbbbbbbbbbbbbbbb</a></span>
<span class="category_r_text"><a href="#">cccccccccccccccccccccccccccc</a></span>
<span class="catego . . .
But I don't really see how that would stop it from working in IE. That just helps with the setup of the crawler while the page loads, reserving space for it without showing anything until the images are loaded. But with a text only crawler like you have, that's not really a consideration.
Now, I setup a demo using the code, including the css from your post and couldn't get it to not work in IE 7. Probably there is more to it than that. If so:
Please post a link to the page on your site that contains the problematic code so we can check it out.
One thing though, for IE you should make sure to use a valid URL DOCTYPE like:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
or:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
as the very first thing on your page, before the opening <html> tag.
Bookmarks