HOW CAN I POSITION TEXT OVER AN IMAGE WITH A SCRIPT?

Question by peter s:
How can i position text over an image with a script?
Ive been using html tables to try and do this however i cannot do this as the image im using is from another site e.g.
This is not granted as a bg image. I basically want some script, maybe css, to position some text over the image exactly where i want (not just top middle or bottom). Can anyone help>? (also javascript might work, not sure)
——————————————
Answer by wise_entities
try layer-ing.. using dreamweaver..
——————————————
Add your own answer in the comments!









about 1 year ago
beside align center, justify there is an option number click on that.. you will see 1. enter text and press number two will automatically appeared in editor..
about 1 year ago
Hi, here is the answer to your question.
Click View – Header and Footer and proceed with the instructions below.
First, type the below expression and left align it (odd page numbers).
{={page}+{={page}-1}*1+0}
Delete the paired angular brackets and replace them by:
1. Pressing Ctrl + F9 to get the angular brackets (do not use keyboard angular brackets)
2. Select the expression and press Shift + F9
Second, type the below expression and right align using tab settings (even page numbers)
{={page}+{={page}-1}*1+1}
Delete the paired angular brackets and replace them by:
1. Pressing Ctrl + F9 to get the angular brackets (do not use keyboard angular brackets).
2. Select the expression and press Shift + F9
Hope you were sucessful. If you need further clarification, you are always welcome to email me at srisridhar3@yahoo.co.in or sk.sridhar@gmail.com or get in touch with me +91-9940259249. Please do opt my answer as a best one if your desired results are achived. All the best
about 1 year ago
you can do that with pure CSS/HTML
ex:
just place image url between ( and ) and play with the padding till you are satisfied with the text position:
XX = number
padding: top right bottom left respectively
ex:
padding: 10 0 0 40
the above padding values will move text 10 pixels down and 40 pixel to the right. negative padding values are not allowed.