View Full Version : Text on images...


live2ride_04
03-23-2004, 05:43 AM
Ok, I want to put text on my image, but I want to put it in a designated area I put it, but I don't know how to adjust it to get it to that spot. Also, I will need to make it so that spot can scroll, so the text doesn't leave the box. The image is located at http://www.neopets.com/guilds/guild.phtml?oid=live2ride_04. I want to put the text in the darker areas. Thanks

Lemon Squash
03-23-2004, 03:34 PM
To postition the text use:

<div style="position:absolute; left:300; top:300;">
Text here..
</div>

Change the left:300 and top:300 numbers untill you get it where you want it.

For the Spot that you want to scroll use:

<div style="position:absolute;left:300;top:300;width:150;heigh t:100;overflow:auto">
Blah blah blah blah blah blah blah blah blah blah . . . .
</div>

Again change the left:300 and top:300 numbers so it gets positioned where you want it. Change the width:150 and height:100 numbers to how wide and tall you want your box to be. =)

chainwall
03-23-2004, 03:51 PM
Okay, thanks a bunch, that really helps.:)