How to add scrolling text to my page?

Hi you
You can create a scrolling marquee (i.e. scrolling text or scrolling images) by using the <marquee> tag. You can make the text/images scroll from right to left, left to right, top to bottom, or bottom to top.

This is an example of a continuously scrolling text

<marquee behavior="scroll" direction="left">Your scrolling text goes here</marquee>
 
ou can use the HTML marquee tag to add scrolling text to a page.
For Chameleon users who want it on the home page, follow these steps.

Go to Team Admin > Website Design > Website Layout Configuration > Main Text tab
Add this HTML code where you want your message, of course putting in your own message:
<marquee>This is my scrolling message</marquee>
The marquee tag does accept CSS style elements, so to make a bigger red message, for example, do so as follows:
<marquee style="font-size: 18px; color: red;">This is my scrolling message</marquee>
Click Save Changes
OR try this site FlashVortex.com and add the code. You will need to combine all lines of code into one line.
For all other places, follow these steps.

Go to the page where you want to place this
Click Edit
Click the Source button to change to HTML
Place this code where you want to have it scroll
<marquee>This is my scrolling message</marquee>
Type your text to replace the generic Marquee text
Click Source again to put your text back into plain text editor mode
You can now change the Font, Color, Size of your scrolling Text without being in HTML mode
Click Save Changes
 
Back
Top