• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

overlap text over image?

you could probably place a background in a table and then enter your text there.
or you could try something a little more complex, CSS positioning.
 
Just use div layers:

Code:
<div style="position: absolute; left: 0px; top: 0px;"><img src="IMAGE HERE"></div>
<div style="position: absolute; left: 0px; top: 0px;">TEXT HERE</div>
Replace left: 0px; top: 0px; with the position of your image and text, and add width: XXpx; height: XXpx; if necessary.
 
Last edited:
Back
Top