Marquee now taking up full space

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
like_duh44
Forum Commoner
Posts: 63
Joined: Sat Jul 26, 2003 6:57 pm

Marquee now taking up full space

Post 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>
User avatar
JayBird
Admin
Posts: 4524
Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:

Post 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
like_duh44
Forum Commoner
Posts: 63
Joined: Sat Jul 26, 2003 6:57 pm

Post by like_duh44 »

Do you have a suggestion for a replacement?
User avatar
JayBird
Admin
Posts: 4524
Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:

Post by JayBird »

there isn't a direct alternative.

You will need to use JavaScript or a Java Applet.

Mark
Post Reply