MyBB Community Forums

Full Version: Creating a scrolling marquee of affiliates at bottom of forum
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I was wondering how to create a scrolling marquee of links to affiliates at the bottom of my forum.

Here's the code I have thus far:

Code:
Major Affiliates:<br /><br /><marquee direction=�left� scrollamount=�2�><a href="http://www.anime-tron.com/><img src="http://img482.imageshack.us/img482/4605/bluedepth2mj.jpg"></marquee>

Am I on the right track? After I added the above code all I got was the words "Major Affiliates:" with nothing else showing. Help! I'd like to add two more banners after the first one.
Last time I checked, marquee isn't a W3C supported X/HTML tag.
Okay. Is there a way to make a marquee or a way to place the banners for my affiliates at the bottom of the index template? I got the <marquee></marquee> tags from another bulletin board (use for a scrolling marquee in the forums sidebar on that site).
Hmmm...this could help me too!
I just tried the marquee with text and it worked. When I tried to make the marquee with an image, it didn't work. The image didn't appear at all.
Can you write the whole code?
okguys use this code

<table width="90%" height="31">
<tr>
<td>
<marquee direction=right scrollamount=4 onMouseOver=this.stop(); onMouseOut=this.start();>
<a href="http://techex.techindo.com" target="_blank"><img src="http://techex.techindo.com/links_imgs/sign.png" border="0"></a>
</td>
</tr>
</table>

that will do the job Smile

bye
That works perfect!Just one more thing:
How to add text?What is the code...?
for a marquee with only text use this

<table border="0" width="100%"><tr><td class="tcat"><marquee behavior=scroll direction="left" scrollamount="2"> | TECHEX - The Forum</marquee></td></tr></table><br>

regards
I don't think that <marquee> is supported by all browsers.
Pages: 1 2