Skype - Kamala Harris - Debt Consolidation - Debt Consolidation - Find jobs

PDA

View Full Version : Write Text on Image


anhtin
Apr 12th 2007, 2:52 am
hi all
I want to write Some text on my Image by javacript
Some body show me ??????:confused:

Bagi Zoltán
Apr 12th 2007, 2:59 am
Is the javascript important for you? That text won't be recognised by search engines. I suggest you to use css for that purpose.

anhtin
Apr 12th 2007, 3:03 am
i only write front image :D
can u show me

ajsa52
Apr 12th 2007, 3:06 am
How about this: using CSS positioning methods to overlap HTML texts over your images

Bagi Zoltán
Apr 12th 2007, 3:13 am
Set the image into a div as background with the following css code.. For instance:
<div class="img"><p class="t">text on the image</p></div>

.img{
width:100px; (same as the image width)
height:50px; (same as the image height)
}

t.{
margin:auto;}

anhtin
Apr 13th 2007, 3:44 am
thank reply to me
i want write text is dymamic by java cript
ex: i have textbox and have some text
When i click on the image this text will view on this position so clicked mouse

Clive
Apr 13th 2007, 3:53 am
How about this: using CSS positioning methods to overlap HTML texts over your images

That, or you could define a div to use the image as background, then you can add your text "above" the image easily.