Click to See Complete Forum and Search --> : How to change font size for "JUMPING LETTERS"


coffeeswirlz
01-12-2003, 10:30 PM
Quick question: where in the HTML do you change the font size for "jumping letters"? I can't figure it out. :)

Zach Elfers
01-12-2003, 10:39 PM
Can you please show me what you mean by JUMPING LETTERS.

coffeeswirlz
01-13-2003, 08:50 AM
Here's the link to "jumping letters": javascript.internet.com/messages/jumping-letters.html I can not figure out how to change the size of the font and I fooled around with it. :( Maybe you can help. :)
THANKS, Madeline

swon
01-13-2003, 01:24 PM
make a stylesheet that defined the span:

<style>
span
{
font-family:arial,verdana,helvetica;
font-size:8pt;
color:red;
}
</style>

should do the trick, else it's the div-tag!

pyro
01-13-2003, 01:27 PM
Just for your information, this line is where you would have to change that font size, if you don't use swon's method...

<center><h1><div id="jump"></div></h1></center>

Remove the <h1> tag and add you font tag with you size.

coffeeswirlz
01-13-2003, 01:43 PM
Thank you. You both rock! Pyro-thanks for specifically telling which line I should change.

khalidali63
01-13-2003, 01:49 PM
try this as well if you like(though youve gotten the solution).
I have updated the code so that you can change the font size dynamically.
Khalid