JavaScript and client side scripting.
Moderator: General Moderators
like_duh44
Forum Commoner
Posts: 63 Joined: Sat Jul 26, 2003 6:57 pm
Post
by like_duh44 » Thu Feb 12, 2004 9:32 am
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>
JayBird
Admin
Posts: 4524 Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:
Post
by JayBird » Thu Feb 12, 2004 9:44 am
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 » Thu Feb 12, 2004 6:15 pm
Do you have a suggestion for a replacement?
JayBird
Admin
Posts: 4524 Joined: Wed Aug 13, 2003 7:02 am
Location: York, UK
Contact:
Post
by JayBird » Fri Feb 13, 2004 3:25 am
there isn't a direct alternative.
You will need to use JavaScript or a Java Applet.
Mark