|
Post by iisme on Nov 15, 2006 20:13:43 GMT -5
Im trying to create it so that the text within a HTML table will scroll, but some of the headings stay put. I got it to do that but it's going too fast. How do i slow it down? I also want to decrease the space that the text scrolls up in. Here's what it looks like right now: fearthewolves.proboards54.com/index.cgiAnd here's the code i put in: <b><u>Wolf Stats</u></b> <br /> <br /> <u><b>Total Wolves:</b></u> <b><font color=0033FF>1</font></b> <br /> <marquee direction="up" scrollammount="1"><center>Kalgorn</center></marquee> <br /> <u><b>Total Feas:</b></u> <b><font color=0033FF>0</font></b> <br /> Im talking about the stuff in the left column. The middle and right column are fine right now.
|
|
|
Post by Michael on Nov 15, 2006 23:02:03 GMT -5
I tried this one and the only thing I could think of is a scrolldelay. I don't know all that much code so there is probably something more efficient. lol. But here it is: <center><b><u>Wolf Stats</u></b> <br /> <br /> <u><b>Total Wolves:</b></u> <b><font color=0033FF>1</font></b> <br /> <marquee direction="up" scrollammount="1" scrolldelay="150"><center>Kalgorn</center></marquee> <br /> <u><b>Total Feas:</b></u> <b><font color=0033FF>0</font></b> <br /> </center> It's a little... bumpy. lol. I guess because of the delay but yeah, hang around and I'm sure someone will find something better. ;]
|
|
|
Post by iisme on Nov 16, 2006 1:40:05 GMT -5
Hmm, looks fine for right now. That slowed it down a good bit. But im still wondering though, how can I shrink the space that the text goes up in? I mean, how can i get rid of that big blank area between the Total Wolves heading and Total Feas heading?
|
|
|
Post by Michael on Nov 17, 2006 23:39:03 GMT -5
Let me check it again for you. Edit: I tried all that I knew, which isn't much, so you may have to hang around and see if someone else can. Sorry.
|
|
|
Post by Andrew on Nov 18, 2006 22:59:28 GMT -5
The most easy way I would find to do this is to wrap it in a HTML tag like so: <FONT SIZE="4" FACE="courier" COLOR=blue><MARQUEE WIDTH=100% BEHAVIOR=ALTERNATE >Guess what? Your text goes here ^.^</MARQUEE></FONT> That will give you a scrolling Marquee this will set you using a vertical Marquee: <div align="center"> <marquee scrollamount="2" direction="up" loop="true" width="35%"> <center> <font color="#000000" size="+1"><strong> THIS IS A COOL WAY<br> TO MAKE YOUR TEXT<br> SCROLL UPWARDS<br> <br> IT IS EASY AND FAST LOADING </strong></font> </center> </marquee></div> Were the Break tags are <br> </br> You use to split up your text from line to line so you dont get one big line of text across your webpage/forum . Anyway just test them out in Notepad first and save your docment as .html so you can ge ta preview before instaling on your site. Hope this helps ~Andrew ;D
|
|
|
Post by iisme on Nov 20, 2006 18:28:31 GMT -5
Didn't work.
<div align="center"> <marquee scrollamount="2" direction="up" loop="true" width="35%"> <center> <font color="#0033FF" size="1"><strong>Kalgorn</strong></font> </center> </marquee></div>
Is there something wrong with this?
|
|
|
Post by Nya on Nov 20, 2006 20:11:26 GMT -5
<div> align="center"> <marquee scrollamount="2" direction="up" loop="true" width="35%"> <center> <font color="#0033FF" size="1"><strong>Kalgorn</strong></font> </center> </marquee></div>
Your missing the > in red.
|
|
|
Post by Andrew on Nov 21, 2006 18:32:42 GMT -5
Thanks for getting that Nya ;D
|
|
|
Post by Smangii on Dec 9, 2006 1:28:19 GMT -5
^ No, that would make it worst.
What he did was right, before. Just needed to get rid of the enter.
<div align="center"> <marquee scrollamount="2" direction="up" loop="true" width="35%"> <center> <font color="#0033FF" size="1"><strong>Kalgorn</strong></font> </center> </marquee></div>
|
|