Page 1 of 1

Marquee now taking up full space

Posted: Thu Feb 12, 2004 9:32 am
by like_duh44
I have a marquee that is supposed to scroll through out the whole frame height, but its only going down about 3/4 of the way. Any suggestions? Also, if I try to make the table size higher, it will go away about 50 pixles from the top. Thanks for the help

Code: Select all

<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="style.css"/>
</head>
<body class="headerright">
<table width="100%" cellspacing="0" cellpadding="0"/>
	<tr/>
		<td height="28" class="header"/>
			<b/>::HoC:: Forum - New Posts</b>
		</td>
	</tr>
</table>
<marquee style="padding:3px;" behavior="scroll" direction="up" scrollamount="1" scrolldelay="25" onMouseOver='this.stop()' onMouseOut='this.start()'/>
<div align="left"/>
	<hr size="2"/>
</div>

</body>
</html>

Posted: Thu Feb 12, 2004 9:44 am
by JayBird
you really shouldn't be using the marquee tag any more!

It aint even part of the HTML standard and only supported by Microsoft IE.

Mark

Posted: Thu Feb 12, 2004 6:15 pm
by like_duh44
Do you have a suggestion for a replacement?

Posted: Fri Feb 13, 2004 3:25 am
by JayBird
there isn't a direct alternative.

You will need to use JavaScript or a Java Applet.

Mark