tags:

views:

93

answers:

1

When I insert an image in Dreamweaver: how do I align it freely like move and place the image wherever I want istead of using the alignments?

A: 

You may want to use a "div" element and put your image inside of it.

Or you can set style of the image as "position absolute".

marvin
how can i create a div element
jj
sorry, i dont have a Dreamweaver installed right now. So, i cant guide you through that, but i can help you with the code if you like. There should be some 'code view' section in Dreamweaver. You can add <div style="position:absolute"><img src="yourimage.jpg" /></div> . Dont forget, you need to add this inside body tags. After that, when you go back to user interface, you should see your div.
marvin