View Full Version : marquee in firefox


Rayna0607
02-18-2007, 07:14 AM
<center>
<DIV id=marqueecontainer style="OVERFLOW: auto; WIDTH: 388px; HEIGHT: 100px">
<MARQUEE behavior=alternate>
<MARQUEE width=200><IMG src="IMG01"><IMG src="IMG02"><IMG src="IMG03"></MARQUEE></MARQUEE></DIV>
</center>



how can i get this code to work in firefox?

Ges
02-18-2007, 08:52 AM
Hi Rayna0607,
Unfortunately, the MARQUEE tag is not supported by Firefox. Take a look here for an explanation.

http://www.htmlcodetutorial.com/_MARQUEE.html

If it is a real problem then I could probably post you a Javascript alternative.
Let me know.

Regards,
Ges.

Arwen
02-18-2007, 11:40 AM
Of course it is! Almost all of the marquee tags works fine in Firefox. I fixed your code a bit:

<center>
<DIV id=marqueecontainer style="OVERFLOW: auto; WIDTH: 388px; HEIGHT: 100px">
<MARQUEE behavior="alternate"><IMG src="IMG01"><IMG src="IMG02"><IMG src="IMG03"></MARQUEE></DIV>
</center>

This should work. :)

Ges
02-18-2007, 11:58 AM
ARWEN
I do apologise. Yes it does work as I changed the code afterwards. I have sent an email to HTMLCODETUTORIAL to tell them to update their information and will let you know the outcome.

Once again I apologise as it is never my intention to mislead anyone in any way whatsoever.

Regards,
Ges.

Rayna0607
02-18-2007, 07:28 PM
Thanks for the feedbacks!

Is there anyway to set the marquee width in it as well? There is a difference as to how it appears between the code with marquee width and the code w/o marquee width. If not, is there an alternative with another code or script?