'Sup. Need to add text over the top of an image in Adobe Dreamweaver CS5, and after, researching it, really can't find out how to do it. Halp would be appreciated. :>
not sure, I only know how to do it in HTML/CSS you'd increase the z-index attribute of the element at hand relative to the one you wish to overlay.
Or if you put the text in it's own wrapper/div, you can specify the image via #background-image:url('example.jpeg')
on the html page: Code: <div id='image'> <p> [COLOR=Yellow]Text Goes here [/COLOR]</p> </div> in CSS Code: #image{ background-image: url(images/[COLOR=Yellow]backgroundimage.jpg[/COLOR]); }
check out this simple tutorial to write text over images in dreamweaver and html http://www.fixuniverse.com/How to write text over an image in Dreamweaver.php
Use Photoshop for upgrading and cutting pictures only.Build your site design with Dreamweaver. avail adobe and read what they say in regards to Dreamweaver in light of the fact that it was in reality made for individuals who don't know or comprehend HTML. Dreamweaver really shows you to comprehend it.
I only know how to do it in HTML/CSS you'd increase the z-index attribute of the element at hand relative to the one you wish to overlay